TaskOrchestrationContext.CallHttpAsync and automatic polling in dotnet-isolated #2775
Unanswered
danny-ifai
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Hello @danny-ifai I am also facing the same issue where the server-side polling on HTTP 202 response isn't happening in my isolated worker model function. Did you find any other guidance related to this? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Does the
TaskOrchestrationContext.CallHttpAsync
extension method method in dotnet-isolated Durable Functions support automatic polling of 202 responses?Specifically, I'm calling an HttpTrigger on a different Azure Function that starts its own durable orchestrator and uses
CreateCheckStatusResponse
to return a 202 status, location header and requisite url. My understanding is that this should 'just work' with the CallHttpAsync extension method but I seem to just get the 202 response and no polling takes place when I run it locally.I couldn't find clear documentation on this aspect as the examples all seem to be for the functions 2.x framework.
Not sure if it is not yet fully supported for this scenario or whether it is the way I am running it.
Any insights or examples regarding its support or use would be greatly appreciated.
Many thanks,
Danny
Beta Was this translation helpful? Give feedback.
All reactions