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