in src/orchestrations/DurableOrchestrationContext.ts [245:273]
throw Error(
"A framework-internal error was detected: replay schema version >= V3 is being used, " +
"but `defaultHttpAsyncRequestSleepDuration` property is not defined. " +
"This is likely an issue with the Durable Functions Extension. " +
"Please report this bug here: https://github.com/Azure/azure-functions-durable-js/issues"
);
}
return new CallHttpWithPollingTask(
false,
newAction,
this,
this.taskOrchestratorExecutor,
this.defaultHttpAsyncRequestSleepTimeMillseconds
);
}
return new AtomicTask(false, newAction);
}
public continueAsNew(input: unknown): void {
const newAction = new ContinueAsNewAction(input);
this.taskOrchestratorExecutor.addToActions(newAction);
this.taskOrchestratorExecutor.willContinueAsNew = true;
}
public createTimer(fireAt: Date): TimerTask {
const timerAction = new CreateTimerAction(fireAt);
const durationUntilFire = moment.duration(moment(fireAt).diff(this.currentUtcDateTime));
if (this.schemaVersion >= ReplaySchema.V3) {
if (!this.maximumShortTimerDuration || !this.longRunningTimerIntervalDuration) {