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
AuditProcessManager and possibly other classes are lacking true async support. Database IO operations are blocking thread pool threads because AuditProcessManager's async methods just call the sync ones.
In this example, as entities are persisted and flushed by NHibernate with ISession.FlushAsync(), Envers calls ISession.Flush() on the audit entities:
AuditProcessManager and possibly other classes are lacking true async support. Database IO operations are blocking thread pool threads because AuditProcessManager's async methods just call the sync ones.
In this example, as entities are persisted and flushed by NHibernate with
ISession.FlushAsync()
, Envers callsISession.Flush()
on the audit entities:The text was updated successfully, but these errors were encountered: