Skip to content

Commit e8c6d1e

Browse files
Merge pull request #234303 from aishwaryabh/patch-1
Update functions-bindings-error-pages.md
2 parents 8b6995c + f52707c commit e8c6d1e

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

articles/azure-functions/functions-bindings-error-pages.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,20 @@ public static async Task Run([EventHubTrigger("myHub", Connection = "EventHubCon
121121

122122
# [Isolated process](#tab/isolated-process/fixed-delay)
123123

124-
Retry policies aren't yet supported when they're running in an isolated worker process.
124+
```csharp
125+
[Function("EventHubsFunction")]
126+
[FixedDelayRetry(5, "00:00:10")]
127+
[EventHubOutput("dest", Connection = "EventHubConnectionAppSetting")]
128+
public static string Run([EventHubTrigger("src", Connection = "EventHubConnectionAppSetting")] string[] input,
129+
FunctionContext context)
130+
{
131+
// ...
132+
}
133+
```
134+
|Property | Description |
135+
|---------|-------------|
136+
|MaxRetryCount|Required. The maximum number of retries allowed per function execution. `-1` means to retry indefinitely.|
137+
|DelayInterval|The delay that's used between retries. Specify it as a string with the format `HH:mm:ss`.|
125138

126139
# [C# script](#tab/csharp-script/fixed-delay)
127140

0 commit comments

Comments
 (0)