Skip to content

Commit 0d611cd

Browse files
authored
Merge pull request #181052 from JoshLove-msft/patch-1
Update functions-bindings-service-bus.md
2 parents 52b22bc + ade6f96 commit 0d611cd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

articles/azure-functions/functions-bindings-service-bus.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,8 @@ The example host.json file below contains only the settings for version 5.0.0 an
137137
"maxConcurrentCalls": 16,
138138
"maxConcurrentSessions": 8,
139139
"maxMessages": 1000,
140-
"sessionIdleTimeout": "00:01:00"
140+
"sessionIdleTimeout": "00:01:00",
141+
"enableCrossEntityTransactions": false
141142
}
142143
}
143144
}
@@ -154,6 +155,7 @@ When using service bus extension version 5.x and higher, the following global co
154155
|maxConcurrentSessions|8|The maximum number of sessions that can be handled concurrently per scaled instance.|
155156
|maxMessages|1000|The maximum number of messages that will be passed to each function call. This only applies for functions that receive a batch of messages.|
156157
|sessionIdleTimeout|n/a|The maximum amount of time to wait for a message to be received for the currently active session. After this time has elapsed, the processor will close the session and attempt to process another session.|
158+
|enableCrossEntityTransactions|false|Whether or not to enable transactions that span multiple entities on a Service Bus namespace.|
157159

158160
### Retry settings
159161

0 commit comments

Comments
 (0)