You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Calling unwrap will prevent us from utilizing mutexes to introduce thread safety in our rust module, since a thread that panicked will be unable to unlock the mutex.
The unwrap calls should be replaced with actually matching the results.
The text was updated successfully, but these errors were encountered:
Calling
unwrap
will prevent us from utilizing mutexes to introduce thread safety in our rust module, since a thread that panicked will be unable to unlock the mutex.The
unwrap
calls should be replaced with actually matching the results.The text was updated successfully, but these errors were encountered: