Skip to content

Commit 879beee

Browse files
fix format (#239)
1 parent 7546618 commit 879beee

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
@@ -626,8 +626,8 @@ export class AzureAppConfigurationImpl implements AzureAppConfiguration {
626626
} else {
627627
for (const watchedSetting of this.#sentinels.keys()) {
628628
const configurationSettingId: ConfigurationSettingId = { key: watchedSetting.key, label: watchedSetting.label, etag: this.#sentinels.get(watchedSetting)?.etag };
629-
const response: GetConfigurationSettingResponse | undefined
630-
= await this.#getConfigurationSetting(configurationSettingId, { onlyIfChanged: true });
629+
const response: GetConfigurationSettingResponse | undefined =
630+
await this.#getConfigurationSetting(configurationSettingId, { onlyIfChanged: true });
631631

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

0 commit comments

Comments
 (0)