Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wglodek committed May 19, 2015
1 parent 5e543bc commit 80ad7a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion decoders/flows/large-flows.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def preModule(self):
self.warn(
"Cannot have a size that's less than or equal to zero. (size: %s)" % (self.size))
self.size = 1
self.min = 104857 * self.size
self.min = 1048576 * self.size
self.debug("Input: %s, Final size: %s bytes" % (self.size, self.min))

def connectionHandler(self, conn):
Expand Down

0 comments on commit 80ad7a3

Please sign in to comment.