Skip to content

Commit 28d37c2

Browse files
Merge branch 'preview' of https://github.com/Azure/AppConfiguration-JavaScriptProvider into zhiyuanliang/afd-support
2 parents 564f16a + a50b506 commit 28d37c2

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

package-lock.json

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/appConfigurationImpl.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,6 @@ export class AzureAppConfigurationImpl implements AzureAppConfiguration {
649649
const watcher: SettingWatcher = this.#sentinels.get(watchedSetting)!; // watcher should always exist for sentinels
650650
const isDeleted = response === undefined && watcher.etag !== undefined; // previously existed, now deleted
651651
const isChanged = response && response.statusCode === 200 && watcher.etag !== response.etag; // etag changed
652-
653652
if (isDeleted || isChanged) {
654653
changedSentinel = watchedSetting;
655654
changedSentinelWatcher = { etag: isChanged ? response.etag : undefined };

0 commit comments

Comments
 (0)