@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@omen.foundation/node-microservice-runtime",
3
- "version": "0.1.89",
3
+ "version": "0.1.90",
4
4
  "description": "Beamable microservice runtime for Node.js/TypeScript services.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -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] Verifying image exists: ${baseUrl}manifests/${shortImageId}`);
1300
- console.error(`[beamo-node] Verify headers:`, verifyHeaders);
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] ✓ Image verification passed: ${baseUrl}manifests/${shortImageId}`);
1319
+ console.error(`[beamo-node] ✓ Image verification passed`);
1313
1320
  }
1314
1321
 
1315
1322
  // Step 7: Discover storage, components, and dependencies