Skip to content

Commit

Permalink
zk_timeout option must be read as integer
Browse files Browse the repository at this point in the history
Change-Id: I679d75da227248a81e6841851ed26ad1eb390a1e
Closes-Bug: 1643846
  • Loading branch information
Sachin Bansal committed Feb 2, 2017
1 parent ae3a2ee commit 3dec299
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config/schema-transformer/to_bgp.py
Expand Up @@ -783,7 +783,7 @@ def _bool(s):
help="Start port for bgp-as-a-service proxy")
parser.add_argument("--bgpaas_port_end", type=int,
help="End port for bgp-as-a-service proxy")
parser.add_argument("--zk_timeout",
parser.add_argument("--zk_timeout", type=int,
help="Timeout for ZookeeperClient")
parser.add_argument("--logical_routers_enabled", type=_bool,
help="Enabled logical routers")
Expand Down

0 comments on commit 3dec299

Please sign in to comment.