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
@@ -13501,13 +13503,13 @@ public static readonly int
13501
13503
UnableToInterpretTheNestedLambda = Of(
13502
13504
"Unable to interpret the nested lambda with Body:" + NewLine +
13503
13505
"{0}"),
13504
-
WaitForScopedServiceIsCreatedTimeoutExpired = Of(
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
-
"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 trying to resolve the failed service again." + NewLine +
13510
-
"That's why for all these reasons we have a timeout to prevent the hanging due to the infinite waiting.");
13506
+
WaitForScopedServiceIsCreatedTimeoutExpired = Of(
13507
+
"DryIoc has waited for the creation of the scoped (or singleton) service by 'other party' for the {0} ticks without the completion. " + NewLine +
13508
+
"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 +
13509
+
"Or more likely the 'other party' is the same thread and there is an undetected recursive dependency or " + NewLine +
13510
+
"the scoped service creation is failed with the exception and the exception was catched (!) but you are trying to resolve the failed service again. " + NewLine +
13511
+
"For all those reasons DryIoc has a timeout to prevent the infinite waiting. " + NewLine +
13512
+
$"You may change the default timeout via `Scope.{nameof(Scope.WaitForScopedServiceIsCreatedTimeoutTicks)}=NewValue`");
0 commit comments