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
Copy file name to clipboardExpand all lines: src/DryIoc/Container.cs
+4-4
Original file line number
Diff line number
Diff line change
@@ -13502,11 +13502,11 @@ public static readonly int
13502
13502
"Unable to interpret the nested lambda with Body:" + NewLine +
13503
13503
"{0}"),
13504
13504
WaitForScopedServiceIsCreatedTimeoutExpired = Of(
13505
-
"We have waited for the creation of the scoped service by 'other party' for the {0} ticks without the success." + NewLine +
13506
-
"It means that either the 'other party' is the parallel thread wрich has started! but unable to finish the creation of the service in the provided amount of time." + NewLine +
13507
-
"Or more likely we have the undetected recursive dependency and the 'other party' is the same thread." + NewLine +
13505
+
"DryIoc have waited for the creation of the scoped service by 'other party' for the {0} ticks without the success." + NewLine +
13506
+
"It means that either the 'other party' is the parallel thread which has started! but unable to finish the creation of the service in the provided amount of time." + NewLine +
13507
+
"Or more likely there is an undetected recursive dependency and the 'other party' is the same thread." + NewLine +
13508
13508
"Another reason may be that the previous scoped service resolution is failed with the exception and the exception was CATCHED " + NewLine +
13509
-
"but you are proceeding to resolve the failed service again." + NewLine +
13509
+
"but you are trying to resolve the failed service again." + NewLine +
13510
13510
"That's why for all these reasons we have a timeout to prevent the hanging due to the infinite waiting.");
0 commit comments