-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expose cause of initialization errors #6
Comments
Thank you for the feedback! I have filed this request internally as sc-142483. |
…-use-extracted-rust-server-sdk-evaluation [ch102632] Use extracted rust server sdk evaluation crate
👍 for this. |
+1 for this, I am having an unknown issue which for some reason client is not initializing. |
Experiencing the same issue, we had to spend quite a bit of time debugging and only found an issue once enabled |
Is your feature request related to a problem? Please describe.
The
Client
provides aninitialized_async
method to wait until it has completed initialization. The function returns false if an error occurs, but there doesn't seem to be a way to access the error for logging purposes. This could make it a challenge to debug initialization issues.Describe the solution you'd like
A more idiomatic interface in Rust would be to have
initialized_async
return something likeResult<(), InitError>
and define anInitError
type to describe the different failure conditions that might arise.Describe alternatives you've considered
A separate method could be used to retrieve the error (e.g., returning
Option<InitError>
.The text was updated successfully, but these errors were encountered: