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
* Updated the transaction finalizer to not try to release a lock that can never be successful
* Added test to ensure that finalizing a transaction does not throw an exception
varheader=headerField?.GetValue(engine)??thrownewInvalidOperationException("LiteEngine header not available.");
448
+
varheader=headerField?.GetValue(engine)??thrownewInvalidOperationException("LiteEngine header not available.");
436
449
varpragmasProp=header.GetType().GetProperty("Pragmas",BindingFlags.Instance|BindingFlags.Public)??thrownewInvalidOperationException("Engine pragmas not accessible.");
437
-
varpragmas=pragmasProp.GetValue(header)??thrownewInvalidOperationException("Engine pragmas not available.");
450
+
varpragmas=pragmasProp.GetValue(header)??thrownewInvalidOperationException("Engine pragmas not available.");
438
451
vartimeoutProp=pragmas.GetType().GetProperty("Timeout",BindingFlags.Instance|BindingFlags.Public)??thrownewInvalidOperationException("Timeout property not found.");
439
-
varsetter=timeoutProp.GetSetMethod(true)??thrownewInvalidOperationException("Timeout setter not accessible.");
452
+
varsetter=timeoutProp.GetSetMethod(true)??thrownewInvalidOperationException("Timeout setter not accessible.");
0 commit comments