Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions langfuse/_client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1747,6 +1747,12 @@ def auth_check(self) -> bool:
)
return True

except AttributeError as e:
langfuse_logger.warning(
f"Auth check failed: Client not properly initialized. Error: {e}"
)
return False

except Error as e:
handle_fern_exception(e)
raise e
Expand Down