skip to Main Content

Azure Durable Function IDurableOrchestrationContext.CurrentUtcDateTime Returning Same Date Each Time

I am invoking IDurableOrchestrationContext.CurrentUtcDateTime in my Azure Durable Function. var nextRun = context.CurrentUtcDateTime.AddMinutes(1); await context.CreateTimer(nextRun, CancellationToken.None); context.ContinueAsNew(context.NewGuid().ToString()); When I look in the logs, I am seeing this message from the task hub (FYI - today's date is 2023-09-27): Function 'RunOrchestrator…

VIEW QUESTION
Back To Top
Search