We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9708d83 + 7e99609 commit 2d14cfaCopy full SHA for 2d14cfa
articles/azure-functions/durable/durable-functions-timers.md
@@ -51,7 +51,6 @@ const moment = require("moment");
51
52
module.exports = df.orchestrator(function*(context) {
53
for (let i = 0; i < 10; i++) {
54
- const dayOfMonth = context.df.currentUtcDateTime.getDate();
55
const deadline = moment.utc(context.df.currentUtcDateTime).add(1, 'd');
56
yield context.df.createTimer(deadline.toDate());
57
yield context.df.callActivity("SendBillingEvent");
0 commit comments