diff options
author | Kali Kaneko <kali@leap.se> | 2016-05-01 11:09:07 -0400 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2016-05-02 19:36:26 -0400 |
commit | 1173e77cb8d635936c9730ba4ad8b88b24ad1be2 (patch) | |
tree | 025d58a7fabdc432d05487886b619efd5fc14f87 /src/leap/bitmask/cli/bitmask_cli.py | |
parent | 08da5b11103cdd132c3ac4110ba42fcc8510a78b (diff) |
[feature] pluggable backends and api registry
the idea behind this mechanism (partially implemented for that) is to be
able to check the backend output against some type annotations.
We want to be able to detect if a given backend (real services or
authoritative mocks) have diverged from what's specified in the API
annotations.
Diffstat (limited to 'src/leap/bitmask/cli/bitmask_cli.py')
-rwxr-xr-x | src/leap/bitmask/cli/bitmask_cli.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/bitmask/cli/bitmask_cli.py b/src/leap/bitmask/cli/bitmask_cli.py index c5bb1b15..c2b1ba71 100755 --- a/src/leap/bitmask/cli/bitmask_cli.py +++ b/src/leap/bitmask/cli/bitmask_cli.py @@ -325,7 +325,7 @@ def send_command(cli): s = get_zmq_connection() - d = s.sendMsg(*data, timeout=20) + d = s.sendMsg(*data, timeout=60) d.addCallback(cb) d.addCallback(lambda x: reactor.stop()) d.addErrback(timeout_handler) |