Skip to content

Commit e2f4b20

Browse files
committed
make it info and 10 seconds
1 parent 519148a commit e2f4b20

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/pytest-simcore/src/pytest_simcore/helpers/playwright.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -335,10 +335,10 @@ def __call__(self, message: str) -> bool:
335335
)
336336

337337
_current_timestamp = datetime.now(UTC)
338-
if _current_timestamp - self._last_poll_timestamp > timedelta(seconds=5):
338+
if _current_timestamp - self._last_poll_timestamp > timedelta(seconds=10):
339339
url = f"https://{self.node_id}.services.{self.get_partial_product_url()}"
340340
response = self.api_request_context.get(url, timeout=1000)
341-
self.logger.debug(
341+
self.logger.info(
342342
"Querying service endpoint in case we missed some websocket messages. Url: %s Response: '%s' TIP: %s",
343343
url,
344344
f"{response.status}: {response.text()}",

0 commit comments

Comments
 (0)