Don't send invalid wait command

This commit is contained in:
Joshua Boniface 2018-09-24 15:29:37 -04:00
parent bc3cdd67c9
commit 57c936ea05
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ def router_secondary(router):
"""
zk_conn = pvc_common.startZKConnection(zk_host)
retcode, retmsg = pvc_router.secondary_router(zk_conn, router, wait)
retcode, retmsg = pvc_router.secondary_router(zk_conn, router)
cleanup(retcode, retmsg, zk_conn)
###############################################################################