Skip to content

Commit 2d14cfa

Browse files
authored
Merge pull request #97181 from anthonychu/20191125-durable-timer-fix
Fix Durable Functions timer code
2 parents 9708d83 + 7e99609 commit 2d14cfa

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ const moment = require("moment");
5151

5252
module.exports = df.orchestrator(function*(context) {
5353
for (let i = 0; i < 10; i++) {
54-
const dayOfMonth = context.df.currentUtcDateTime.getDate();
5554
const deadline = moment.utc(context.df.currentUtcDateTime).add(1, 'd');
5655
yield context.df.createTimer(deadline.toDate());
5756
yield context.df.callActivity("SendBillingEvent");

0 commit comments

Comments
 (0)