Skip to content

Commit

Permalink
Changed default interval for verifying extraction to 30 seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
ckunki committed Oct 10, 2024
1 parent 35935ba commit 9ad438f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class ExtractValidator:
def __init__(self,
pyexasol_connection: pyexasol.ExaConnection,
timeout: timedelta,
interval: timedelta = timedelta(seconds=10),
interval: timedelta = timedelta(seconds=30),
callback: Callable[[int, List[int]], None] | None = None,
) -> None:
self._pyexasol_conn = pyexasol_connection
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def __init__(self,
self._extract_validator = ExtractValidator(
pyexasol_connection,
timeout=timedelta(minutes=10),
interval=timedelta(seconds=10),
interval=timedelta(seconds=30),
)
logger.debug("Init %s", LanguageContainerDeployer.__name__)

Expand Down

0 comments on commit 9ad438f

Please sign in to comment.