Skip to content

Commit 30e879c

Browse files
Merge pull request #240 from Azure/main
Merge main to preview
2 parents a50b506 + 879beee commit 30e879c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/appConfigurationImpl.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -634,8 +634,8 @@ export class AzureAppConfigurationImpl implements AzureAppConfiguration {
634634
} else {
635635
for (const watchedSetting of this.#sentinels.keys()) {
636636
const configurationSettingId: ConfigurationSettingId = { key: watchedSetting.key, label: watchedSetting.label, etag: this.#sentinels.get(watchedSetting)?.etag };
637-
const response: GetConfigurationSettingResponse | undefined
638-
= await this.#getConfigurationSetting(configurationSettingId, { onlyIfChanged: true });
637+
const response: GetConfigurationSettingResponse | undefined =
638+
await this.#getConfigurationSetting(configurationSettingId, { onlyIfChanged: true });
639639

640640
const watcher: SettingWatcher = this.#sentinels.get(watchedSetting)!; // watcher should always exist for sentinels
641641
const isDeleted = response === undefined && watcher.etag !== undefined; // previously existed, now deleted

0 commit comments

Comments
 (0)