construct-hub 0.4.96 → 0.4.97

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.jsii CHANGED
@@ -16809,6 +16809,6 @@
16809
16809
  "symbolId": "src/package-sources/npmjs:NpmJsProps"
16810
16810
  }
16811
16811
  },
16812
- "version": "0.4.96",
16813
- "fingerprint": "H5leucGmBjY91dRZzNoqhkUTUjvPif5d/08Dl6ShupA="
16812
+ "version": "0.4.97",
16813
+ "fingerprint": "ulgM0wHxeeoI0d14SSKIq9AnoYNb7hw8rf3F4OpB9yQ="
16814
16814
  }
@@ -10332,12 +10332,13 @@ async function handler(event, context) {
10332
10332
  continuationObjectKey: keyName
10333
10333
  };
10334
10334
  }
10335
- const maxMetricProcessingTime = 6e4;
10335
+ const maxMetricProcessingTime = 12e4;
10336
10336
  const packageDataBucket = requireEnv("PACKAGE_DATA_BUCKET_NAME");
10337
10337
  for await (const [keys, latestContinuationToken] of relevantObjectKeys(
10338
10338
  packageDataBucket,
10339
10339
  continuationToken
10340
10340
  )) {
10341
+ console.log(`Got a page of ${keys.length} keys`);
10341
10342
  for (const key of keys) {
10342
10343
  const [, name, version] = STORAGE_KEY_FORMAT_REGEX.exec(key);
10343
10344
  packageNames.add(name);