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 109fe2e commit 1ef6be3Copy full SHA for 1ef6be3
‎backend/services/user_management_service.py‎
@@ -98,7 +98,7 @@ async def check_auth_service_health():
98
99
data = await response.json()
100
# Check if the service is available by verifying the name field equals "GoTrue"
101
- if not data or data.get("name") != "GoTrue":
+ if not data or data.get("name", "") != "GoTrue":
102
logging.error("Auth service is unavailable")
103
raise ConnectionError("Auth service is unavailable")
104
0 commit comments