Skip to content

Commit e4f73ea

Browse files
update
1 parent 866a747 commit e4f73ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/console-app/refresh.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ console.log("Using Azure portal or CLI, update the `app.settings.message` value,
3434

3535
// eslint-disable-next-line no-constant-condition
3636
while (true) {
37-
console.log(settings.get("message"));
3837
// this is a blocking call and you can remove await to make the refresh operation asynchronous
3938
await settings.refresh();
39+
console.log(settings.get("message"));
4040
// wait for 5 seconds
4141
await sleepInMs(5_000);
4242
}

0 commit comments

Comments
 (0)