You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Querying the service endpoint from the E2E test. Url: %s Response: %s TIP: %s",
341
+
self.logger.debug(
342
+
"Querying service endpoint in case we missed some websocket messages. Url: %s Response: '%s' TIP: %s",
343
343
url,
344
-
f"{response.status}: {response.text}",
344
+
f"{response.status}: {response.text()}",
345
345
(
346
-
"We are emulating the frontend; a 500 response is acceptable if the service is not yet ready."
346
+
"We are emulating the frontend; a 5XX response is acceptable if the service is not yet ready."
347
347
),
348
348
)
349
349
ifresponse.status<=400:
350
350
# NOTE: If the response status is less than 400, it means that the backend is ready (There are some services that respond with a 3XX)
351
351
ifself.got_expected_node_progress_types():
352
352
self.logger.warning(
353
-
"⚠️ Progress bar didn't receive 100 percent but service is already running: %s ⚠️", # https://github.com/ITISFoundation/osparc-simcore/issues/6449
353
+
"⚠️ Progress bar didn't receive 100 percent but service is already running: %s. TIP: we missed some websocket messages! ⚠️", # https://github.com/ITISFoundation/osparc-simcore/issues/6449
0 commit comments