Skip to content

Commit

Permalink
testing(automl): retry upon InternalServerError [(#4350)](GoogleCloud…
Browse files Browse the repository at this point in the history
  • Loading branch information
Takashi Matsuo committed Jul 22, 2020
1 parent 0740652 commit 5e194fc
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion samples/snippets/list_operation_status_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@

import os

import backoff
from google.api_core.exceptions import InternalServerError
import pytest

import list_operation_status
Expand All @@ -23,6 +25,11 @@

@pytest.mark.slow
def test_list_operation_status(capsys):
list_operation_status.list_operation_status(PROJECT_ID)
# We saw 500 InternalServerError. Now we just retry few times.
@backoff.on_exception(backoff.expo, InternalServerError, max_time=120)
def run_sample():
list_operation_status.list_operation_status(PROJECT_ID)

run_sample()
out, _ = capsys.readouterr()
assert "Operation details" in out

0 comments on commit 5e194fc

Please sign in to comment.