concurrency should be a int()

This commit is contained in:
Chmouel Boudjnah 2013-03-20 14:04:21 +01:00
parent 5132b30f47
commit 69471b267a
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ def main():
'will be from 1024 Bytes to MAX Bytes')
args = parser.parse_args()
concurrency = get_config('filler', 'concurrency')
concurrency = int(get_config('filler', 'concurrency'))
pile = eventlet.GreenPile(concurrency)
pool = eventlet.GreenPool(concurrency)