We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 519148a commit e2f4b20Copy full SHA for e2f4b20
packages/pytest-simcore/src/pytest_simcore/helpers/playwright.py
@@ -335,10 +335,10 @@ def __call__(self, message: str) -> bool:
335
)
336
337
_current_timestamp = datetime.now(UTC)
338
- if _current_timestamp - self._last_poll_timestamp > timedelta(seconds=5):
+ if _current_timestamp - self._last_poll_timestamp > timedelta(seconds=10):
339
url = f"https://{self.node_id}.services.{self.get_partial_product_url()}"
340
response = self.api_request_context.get(url, timeout=1000)
341
- self.logger.debug(
+ self.logger.info(
342
"Querying service endpoint in case we missed some websocket messages. Url: %s Response: '%s' TIP: %s",
343
url,
344
f"{response.status}: {response.text()}",
0 commit comments