Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test/add retry #82

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
4 changes: 2 additions & 2 deletions tests/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def create_connection(self, original_properties: bool = True):

@backoff.on_exception(backoff_wait_times,
RetryableTapError,
max_tries=3)
max_tries=4)
def run_check_mode(self, conn_id):
# Run a check job using orchestrator (discovery)
check_job_name = runner.run_check_mode(self, conn_id)
Expand Down Expand Up @@ -249,7 +249,7 @@ def run_and_verify_check_mode(self, conn_id):

@backoff.on_exception(backoff_wait_times,
RetryableTapError,
max_tries=3)
max_tries=4)
def run_and_verify_sync(self, conn_id, state):
"""
Run a sync job and make sure it exited properly.
Expand Down