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
Confcrypt.Encryption makes use of throwError from Control.Monad.Except, which can have unpredictable behavior when parallelizing calls. Instead, it makes sense to use the MonadThrow class and associated Control.Exception infrastructure because these natively support asynchronous exceptions.
The text was updated successfully, but these errors were encountered:
Confcrypt.Encryption makes use of
throwError
fromControl.Monad.Except
, which can have unpredictable behavior when parallelizing calls. Instead, it makes sense to use theMonadThrow
class and associatedControl.Exception
infrastructure because these natively support asynchronous exceptions.The text was updated successfully, but these errors were encountered: