agent-relay-server 0.11.0 → 0.11.1
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/src/db.ts +1 -1
package/package.json
CHANGED
package/src/db.ts
CHANGED
|
@@ -4688,7 +4688,7 @@ function rowToOrchestrator(row: any): Orchestrator {
|
|
|
4688
4688
|
const providerCatalog = Array.isArray(meta.providerCatalog) ? meta.providerCatalog as Orchestrator["providerCatalog"] : undefined;
|
|
4689
4689
|
const compatibility = contractCompatibility(contracts, { orchestratorProtocol: CONTRACT_REQUIREMENTS.orchestratorProtocol });
|
|
4690
4690
|
const supervisorRaw = stringValue(meta.supervisor);
|
|
4691
|
-
const supervisor = supervisorRaw === "systemd" || supervisorRaw === "process" || supervisorRaw === "unknown" ? supervisorRaw : undefined;
|
|
4691
|
+
const supervisor = supervisorRaw === "systemd" || supervisorRaw === "launchd" || supervisorRaw === "process" || supervisorRaw === "unknown" ? supervisorRaw : undefined;
|
|
4692
4692
|
const selfUnit = stringValue(meta.selfUnit);
|
|
4693
4693
|
const runtimePrefix = stringValue(meta.runtimePrefix);
|
|
4694
4694
|
const upgrade = parseOrchestratorUpgrade(meta.upgrade);
|