From d2496c34d988306b7762290ed2697250908a9e21 Mon Sep 17 00:00:00 2001
From: Ilya Shakhat <ishakhat@mirantis.com>
Date: Wed, 2 Mar 2016 18:28:11 +0300
Subject: [PATCH] Simulator: fix batch-notify-server command

This patch fixes the name of parameters used to construct
batch notification listener

Change-Id: I8eae9494943b2592c9cf4b92fccca93eab3b8e93
---
 tools/simulator.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/simulator.py b/tools/simulator.py
index 1729b3f68..72679b791 100755
--- a/tools/simulator.py
+++ b/tools/simulator.py
@@ -158,7 +158,7 @@ def batch_notify_server(transport, topic, show_stats, duration):
     server = notify.get_batch_notification_listener(
         transport, [target],
         endpoints, executor='eventlet',
-        batch_size=1000, batch_time=5)
+        batch_size=1000, batch_timeout=5)
     run_server(server, duration=duration)