On DurableTask.AzureStorage, the following orchestration hangs; stepping through the debugger reveals that the timer does not fire.
publicoverrideasyncTask<string>RunTask(OrchestrationContextcontext,intinput){if(input==0){context.ContinueAsNew(1);return"continue as new";}elseif(input==1){awaitcontext.CreateTimer(context.CurrentUtcDateTime,0);return"OK";}
On DurableTask.AzureStorage, the following orchestration hangs; stepping through the debugger reveals that the timer does not fire.