We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37b2bb2 commit 875d2f2Copy full SHA for 875d2f2
1 file changed
langfuse/_client/client.py
@@ -1747,6 +1747,12 @@ def auth_check(self) -> bool:
1747
)
1748
return True
1749
1750
+ except AttributeError as e:
1751
+ langfuse_logger.warning(
1752
+ f"Auth check failed: Client not properly initialized. Error: {e}"
1753
+ )
1754
+ return False
1755
+
1756
except Error as e:
1757
handle_fern_exception(e)
1758
raise e
0 commit comments