agent-relay-server 0.10.17 → 0.10.18

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/routes.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-relay-server",
3
- "version": "0.10.17",
3
+ "version": "0.10.18",
4
4
  "description": "Lightweight HTTP message relay for inter-agent communication across machines",
5
5
  "module": "src/index.ts",
6
6
  "type": "module",
package/src/routes.ts CHANGED
@@ -1870,7 +1870,7 @@ function enqueuePolicyStop(policy: SpawnPolicy, action: "shutdown" | "restart",
1870
1870
  const state = getManagedAgentState(policy.name);
1871
1871
  const nextState = upsertManagedAgentState({
1872
1872
  policyName: policy.name,
1873
- status: action === "restart" ? "starting" : "stopping",
1873
+ status: "stopping",
1874
1874
  agentId: state?.agentId,
1875
1875
  orchestratorId: policy.orchestratorId,
1876
1876
  provider: policy.provider,