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
thrownewTimeoutException($"The execution did not complete in the allotted time ({timeout.TotalSeconds} seconds) and has been terminated prior to completion");
33
+
thrownewTimeoutException($"The execution did not complete in the allotted time ({timeout.TotalSeconds} seconds) and has been terminated prior to completion",ex);
34
34
}
35
35
}
36
36
@@ -43,7 +43,6 @@ public static async Task<T> ExecuteWithTimeoutAsync<T>(Func<Task<T>> toExecute,
43
43
/// <returns>A <see cref="Task"/> representing the asynchronous operation.</returns>
44
44
/// <exception cref="ArgumentNullException">Thrown when <paramref name="toExecute"/> is null.</exception>
45
45
/// <exception cref="TimeoutException">Thrown when the execution does not complete within the timeout.</exception>
46
-
/// <remarks>NOTE: If the function to execute does not respect cancellation tokens, it may continue running in the background after a timeout.</remarks>
thrownewTimeoutException($"The execution did not complete in the allotted time ({timeout.TotalSeconds} seconds) and has been terminated prior to completion");
58
+
thrownewTimeoutException($"The execution did not complete in the allotted time ({timeout.TotalSeconds} seconds) and has been terminated prior to completion",ex);
0 commit comments