mohamedawnallah commented on PR #35920:
URL: https://github.com/apache/beam/pull/35920#issuecomment-3221569210
> 5,), kwargs = {} @wrapt.decorator # type: ignore[misc] def
wrapper(wrapped: Callable[..., Any], instance: Any, args: list[Any], kwargs:
dict[str, Any]) -> Any: from testcontainers.core.container import
DockerContainer if isinstance(instance, DockerContainer): logger.info("Waiting
for container %s with image %s to be ready ...", instance._container,
instance.image) else: logger.info("Waiting for %s to be ready ...", instance)
exception = None for attempt_no in range(config.max_tries): try: return
wrapped(*args, **kwargs) except transient_exceptions as e: logger.debug(
f"Connection attempt '{attempt_no + 1}' of '{config.max_tries + 1}' " f"failed:
{traceback.format_exc()}" ) > time.sleep(config.sleep_time) E Failed: Timeout
(>600.0s) from pytest-timeout.
target/.tox-py39-cloudcoverage/py39-cloudcoverage/lib/python3.9/site-packages/testcontainers/core/waiting_utils.py:65:
Failed</error>
Thanks 🙏. Given we haven't integrated the `ubuntu-latest` yet to run those
tests with `require_docker_in_docker` pytest marker, Curious why they are
currently even running. Let me check this out and report back here
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]