Skip to content

Commit

Permalink
[python] Fix flaky test test_connect_timeouts
Browse files Browse the repository at this point in the history
It only tests passing the timeout, but it's low enough that on our poor
jenkins workers it might actually time out connecting to the cluster.

Change-Id: I9df059724ae77c404bccc594e4fa01ac75d905a5
Reviewed-on: http://gerrit.cloudera.org:8080/6573
Tested-by: Kudu Jenkins
Reviewed-by: Todd Lipcon <[email protected]>
  • Loading branch information
jdcryans authored and toddlipcon committed Apr 7, 2017
1 parent 31f4589 commit 960a061
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/kudu/tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,8 +258,8 @@ def test_session_flush_modes(self):
def test_connect_timeouts(self):
# it works! any other way to check
kudu.connect(self.master_hosts, self.master_ports,
admin_timeout_ms=100,
rpc_timeout_ms=100)
admin_timeout_ms=1000,
rpc_timeout_ms=1000)

def test_capture_kudu_error(self):
pass
Expand Down

0 comments on commit 960a061

Please sign in to comment.