You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In v3.x of `durable-functions`, the `callHttp()` API for`DurableOrchestrationContext` was updated. The following changes were made:
783
+
784
+
- Accept one options object for all arguments, instead of multiple optional arguments, to be more similar to frameworks such as [Express](https://expressjs.com/).
785
+
- Rename `uri` argument to `url`
786
+
- Rename `content` argument to `body`
787
+
- Deprecate `asynchronousPatternEnabled` flag in favor of `enablePolling`.
788
+
789
+
If your orchestrations used the `callHttp` API, make sure to update these API calls to conform to the above changes. Find an example below:
0 commit comments