We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c34de93 commit c084057Copy full SHA for c084057
src/Abstractions/TaskFailureDetails.cs
@@ -167,12 +167,13 @@ internal CoreFailureDetails ToCoreFailureDetails()
167
coreEx.FailureDetails?.Properties ?? null);
168
}
169
170
+ // might need to udpate this later
171
return new TaskFailureDetails(
172
exception.GetType().ToString(),
173
exception.Message,
174
exception.StackTrace,
175
FromExceptionRecursive(exception.InnerException),
- null);// might need to udpate this later
176
+ null);
177
178
179
static TaskFailureDetails? FromCoreFailureDetailsRecursive(CoreFailureDetails? coreFailureDetails)
0 commit comments