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 +2 -2
- package/lib/backend/inventory/canary.lambda.bundle/index.js +2 -1
- package/lib/backend/inventory/canary.lambda.bundle/index.js.map +2 -2
- package/lib/backend/inventory/canary.lambda.js +14 -4
- package/lib/construct-hub.js +1 -1
- package/lib/package-sources/code-artifact.js +1 -1
- package/lib/package-sources/npmjs.js +1 -1
- package/lib/package-tag/index.js +3 -3
- package/lib/package-tag-group/index.js +2 -2
- package/lib/preload-file/index.js +1 -1
- package/lib/s3/storage.js +1 -1
- package/lib/spdx-license.js +1 -1
- package/package.json +1 -1
package/.jsii
CHANGED
@@ -16809,6 +16809,6 @@
|
|
16809
16809
|
"symbolId": "src/package-sources/npmjs:NpmJsProps"
|
16810
16810
|
}
|
16811
16811
|
},
|
16812
|
-
"version": "0.4.
|
16813
|
-
"fingerprint": "
|
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 =
|
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);
|