@@ -46,6 +46,22 @@ public static async Task<HttpResponseData> CatchHttpStart(
46
46
return await client . CreateCheckStatusResponseAsync ( req , instanceId ) ;
47
47
}
48
48
49
+ [ Function ( "CatchActivityExceptionFailureDetails_HttpStart" ) ]
50
+ public static async Task < HttpResponseData > CatchFailureDetailsHttpStart (
51
+ [ HttpTrigger ( AuthorizationLevel . Anonymous , "get" , "post" ) ] HttpRequestData req ,
52
+ [ DurableClient ] DurableTaskClient client ,
53
+ FunctionContext executionContext )
54
+ {
55
+ ILogger logger = executionContext . GetLogger ( "CatchActivityExceptionFailureDetails_HttpStart" ) ;
56
+
57
+ string instanceId = await client . ScheduleNewOrchestrationInstanceAsync (
58
+ nameof ( CatchActivityExceptionFailureDetails ) ) ;
59
+
60
+ logger . LogInformation ( "Started orchestration with ID = '{instanceId}'." , instanceId ) ;
61
+
62
+ return await client . CreateCheckStatusResponseAsync ( req , instanceId ) ;
63
+ }
64
+
49
65
[ Function ( "RetryActivityException_HttpStart" ) ]
50
66
public static async Task < HttpResponseData > RetryHttpStart (
51
67
[ HttpTrigger ( AuthorizationLevel . Anonymous , "get" , "post" ) ] HttpRequestData req ,
@@ -96,11 +112,26 @@ public static async Task<string> CatchActivityException(
96
112
return output ;
97
113
}
98
114
catch ( TaskFailedException ex )
99
- {
115
+ {
100
116
return ex . Message ;
101
117
}
102
118
}
103
119
120
+ [ Function ( nameof ( CatchActivityExceptionFailureDetails ) ) ]
121
+ public static async Task < TaskFailureDetails ? > CatchActivityExceptionFailureDetails (
122
+ [ OrchestrationTrigger ] TaskOrchestrationContext context )
123
+ {
124
+ try
125
+ {
126
+ await context . CallActivityAsync < string > ( nameof ( RaiseException ) , context . InstanceId ) ;
127
+ return null ;
128
+ }
129
+ catch ( TaskFailedException ex )
130
+ {
131
+ return ex . FailureDetails ;
132
+ }
133
+ }
134
+
104
135
[ Function ( nameof ( RetryActivityFunction ) ) ]
105
136
public static async Task < string > RetryActivityFunction (
106
137
[ OrchestrationTrigger ] TaskOrchestrationContext context )
0 commit comments