Skip to content

Commit

Permalink
Merge pull request #498 from SeldonIO/473-timeout-too-short
Browse files Browse the repository at this point in the history
still intermittent problems, timeout needs to be longer
  • Loading branch information
ukclivecox authored Apr 9, 2019
2 parents fd15032 + b43c18c commit 20734ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testing/scripts/seldon_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def rest_request_ambassador_auth(deploymentName,namespace,username,password,endp
auth=HTTPBasicAuth(username, password))
return response

@retry(wait_exponential_multiplier=1000, wait_exponential_max=10000, stop_max_attempt_number=5)
@retry(wait_exponential_multiplier=1000, wait_exponential_max=30000, stop_max_attempt_number=7)
def grpc_request_ambassador(deploymentName,namespace,endpoint="localhost:8004",data_size=5,rows=1,data=None):
if data is None:
shape, arr = create_random_data(data_size,rows)
Expand Down

0 comments on commit 20734ba

Please sign in to comment.