diff --git a/platforms/holyship/src/fleet/holyshipper-fleet-manager.ts b/platforms/holyship/src/fleet/holyshipper-fleet-manager.ts index 45be19de..83f33e9e 100644 --- a/platforms/holyship/src/fleet/holyshipper-fleet-manager.ts +++ b/platforms/holyship/src/fleet/holyshipper-fleet-manager.ts @@ -68,7 +68,10 @@ export class HolyshipperFleetManager implements IFleetManager { const env: Record = { HOLYSHIP_GATEWAY_URL: this.gatewayUrl, HOLYSHIP_ENTITY_ID: entityId, - PORT: "8080", + // Core's Fleet.create builds `instance.url = http://:3100`. If the + // holyshipper listens on a different port, waitForReady pings a closed + // port and times out after 30s — which is exactly what was happening. + PORT: "3100", }; if (config.githubToken) {