Skip to content

Commit

Permalink
fix build warning
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmrdavid committed Sep 30, 2024
1 parent f2ed1e9 commit d6bb8e4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/WebJobs.Extensions.DurableTask/OutOfProcMiddleware.cs
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,7 @@ await this.LifeCycleNotificationHelper.OrchestratorFailedAsync(
else
{
// the function failed for some other reason

string exceptionDetails = functionResult.Exception.ToString();
string exceptionDetails = functionResult.Exception?.ToString();

this.TraceHelper.FunctionFailed(
this.Options.HubName,
Expand Down

0 comments on commit d6bb8e4

Please sign in to comment.