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 c6d1b64 commit f3cc018Copy full SHA for f3cc018
services/web/server/src/simcore_service_webserver/catalog/_constants.py
@@ -1,7 +1,12 @@
1
from typing import Final
2
3
-MSG_CATALOG_SERVICE_UNAVAILABLE: Final[
4
- str
5
-] = "Currently catalog service is unavailable, please try again later"
+from ..constants import MSG_TRY_AGAIN_OR_SUPPORT
+
+MSG_CATALOG_SERVICE_UNAVAILABLE: Final[str] = (
6
+ # Most likely the director service is down or misconfigured so the user is asked to try again later.
7
+ "This service is temporarily unavailable. The incident was logged and will be investigated. "
8
+ + MSG_TRY_AGAIN_OR_SUPPORT
9
+)
10
11
12
MSG_CATALOG_SERVICE_NOT_FOUND: Final[str] = "Not Found"
0 commit comments