Skip to content

Commit 4348f0e

Browse files
authored
Merge pull request #102294 from xinyi-joffre/patch-1
Fix broken javascript code snippet
2 parents 2a5029d + 0398d08 commit 4348f0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-functions/durable/durable-functions-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ const moment = require("moment");
252252

253253
module.exports = df.orchestrator(function*(context) {
254254
const jobId = context.df.getInput();
255-
const pollingInternal = getPollingInterval();
255+
const pollingInterval = getPollingInterval();
256256
const expiryTime = getExpiryTime();
257257

258258
while (moment.utc(context.df.currentUtcDateTime).isBefore(expiryTime)) {

0 commit comments

Comments
 (0)