We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8651fc8 commit 0b682beCopy full SHA for 0b682be
1 file changed
src/appConfigurationImpl.ts
@@ -769,11 +769,8 @@ export class AzureAppConfigurationImpl implements AzureAppConfiguration {
769
const items: ConfigurationSetting[] = [];
770
for await (const page of pageIterator) {
771
pageWatchers.push({ etag: page.etag });
772
- for (const setting of page.items) {
773
- items.push(setting);
774
- }
+ items.push(...page.items);
775
}
776
-
777
return { items, pageWatchers };
778
};
779
@@ -814,11 +811,8 @@ export class AzureAppConfigurationImpl implements AzureAppConfiguration {
814
811
815
812
816
813
817
818
819
820
821
822
return items;
823
824
0 commit comments