From 69471b267aaf731d2b342870f38ebf62d28ba120 Mon Sep 17 00:00:00 2001 From: Chmouel Boudjnah Date: Wed, 20 Mar 2013 14:04:21 +0100 Subject: [PATCH] concurrency should be a int() --- bin/filler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/filler.py b/bin/filler.py index fed0d69..8f33455 100755 --- a/bin/filler.py +++ b/bin/filler.py @@ -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)