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
// Quote from https://docs.microsoft.com/en-us/azure/azure-functions/durable-functions-bindings:
119
-
//
120
-
// "Orchestrator functions should never use any input or output bindings other than the orchestration trigger binding.
121
-
// Doing so has the potential to cause problems with the Durable Task extension because those bindings may not obey the single-threading and I/O rules."
122
-
//
123
-
// Therefore, it's by design that input data contains only one item, which is the metadata of the orchestration context.
124
-
varcontext=inputData[0];
125
-
126
-
// TODO: make this de-serialization constructor depend on the external SDK
0 commit comments