@omen.foundation/node-microservice-runtime 0.1.89 → 0.1.90
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/package.json +1 -1
- package/scripts/publish-service.mjs +10 -3
package/package.json
CHANGED
|
@@ -1296,11 +1296,18 @@ async function main() {
|
|
|
1296
1296
|
};
|
|
1297
1297
|
|
|
1298
1298
|
if (process.env.BEAMO_DEBUG === '1' || process.env.BEAMO_NODE_DEBUG === '1') {
|
|
1299
|
-
console.error(`[beamo-node]
|
|
1300
|
-
console.error(`[beamo-node]
|
|
1299
|
+
console.error(`[beamo-node] [STEP: Post-Upload Verification]`);
|
|
1300
|
+
console.error(`[beamo-node] Full Image ID: ${fullImageId}`);
|
|
1301
|
+
console.error(`[beamo-node] Short Image ID: ${shortImageId}`);
|
|
1302
|
+
console.error(`[beamo-node] Base URL: ${baseUrl}`);
|
|
1303
|
+
console.error(`[beamo-node] Verification URL: ${baseUrl}manifests/${shortImageId}`);
|
|
1304
|
+
console.error(`[beamo-node] Verify Headers:`, JSON.stringify(verifyHeaders, null, 2));
|
|
1301
1305
|
}
|
|
1302
1306
|
|
|
1303
1307
|
// Wait a moment for registry to propagate
|
|
1308
|
+
if (process.env.BEAMO_DEBUG === '1' || process.env.BEAMO_NODE_DEBUG === '1') {
|
|
1309
|
+
console.error(`[beamo-node] Waiting 3 seconds for registry propagation...`);
|
|
1310
|
+
}
|
|
1304
1311
|
await new Promise(resolve => setTimeout(resolve, 3000));
|
|
1305
1312
|
|
|
1306
1313
|
const imageExists = await verifyManifestExists(baseUrl, shortImageId, verifyHeaders);
|
|
@@ -1309,7 +1316,7 @@ async function main() {
|
|
|
1309
1316
|
}
|
|
1310
1317
|
|
|
1311
1318
|
if (process.env.BEAMO_DEBUG === '1' || process.env.BEAMO_NODE_DEBUG === '1') {
|
|
1312
|
-
console.error(`[beamo-node]
|
|
1319
|
+
console.error(`[beamo-node] ✓ Image verification passed`);
|
|
1313
1320
|
}
|
|
1314
1321
|
|
|
1315
1322
|
// Step 7: Discover storage, components, and dependencies
|