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
@@ -13486,8 +13500,14 @@ public static readonly int
13486
13500
"Validate found the errors, please check the ContainerException.CollectedExceptions for details."),
13487
13501
UnableToInterpretTheNestedLambda = Of(
13488
13502
"Unable to interpret the nested lambda with Body:" + NewLine +
13489
-
"{0}")
13490
-
;
13503
+
"{0}"),
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 wich is started! but unable to create the service for the 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 +
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 proceed resolving the failed service again." + NewLine +
13510
+
"That's why for all these reasons we have a timeout to prevent the hanging due the infinite waiting.");
0 commit comments