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.
1 parent a3f068e commit fb56a0fCopy full SHA for fb56a0f
src/AzureAppConfigurationImpl.ts
@@ -447,18 +447,11 @@ export class AzureAppConfigurationImpl implements AzureAppConfiguration {
447
listOptions
448
).byPage();
449
450
- let pageCount = 0;
451
for await (const page of pageIterator) {
452
if (page._response.status === 200) { // created or changed
453
needRefresh = true;
454
break;
455
}
456
- // unchanged, check next page
457
- pageCount++;
458
- }
459
-
460
- if (pageCount !== selector.pageEtags?.length) {
461
- needRefresh = true; // page count changed indicating feature flags are added or deleted
462
463
464
if (needRefresh) {
0 commit comments