Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Small update
  • Loading branch information
yunhaoling committed Sep 6, 2019
commit ff5af9798bb18b98322bc50eea23ebf0e5d0a96c
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def _handle_exception(self, exception):

return _handle_exception(exception, self)

def _do_retryable_operation(self, operation, timeout=None, **kwargs):
def _do_retryable_operation(self, operation, timeout=100000, **kwargs):
# pylint:disable=protected-access
timeout_time = time.time() + (
timeout if timeout else 100000) # timeout equals to 0 means no timeout, set the value to be a large number.
Expand Down