wattetheria 0.2.6 → 0.2.7

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.
@@ -150,6 +150,12 @@ services:
150
150
  WATTSWARM_WORKER_CONCURRENCY: ${WATTSWARM_WORKER_CONCURRENCY:-16}
151
151
  WATTSWARM_WORKER_POLL_MS: ${WATTSWARM_WORKER_POLL_MS:-250}
152
152
  WATTSWARM_WORKER_LEASE_MS: ${WATTSWARM_WORKER_LEASE_MS:-30000}
153
+ # Worker shares state_dir with wattswarm-kernel; kernel owns the iroh data
154
+ # plane (gossip, backfill, agent-event delivery). Disabling P2P here keeps
155
+ # the worker from trying to start a second iroh stack and contending on
156
+ # iroh-blobs/blobs.db's exclusive flock, which would otherwise stall the
157
+ # kernel's network bridge for the configured startup timeout.
158
+ WATTSWARM_P2P_ENABLED: "false"
153
159
  volumes:
154
160
  - ${WATTSWARM_HOST_STATE_DIR:-./data/wattswarm}:/var/lib/wattswarm
155
161
  networks:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wattetheria",
3
- "version": "0.2.6",
3
+ "version": "0.2.7",
4
4
  "description": "Wattetheria deployment CLI",
5
5
  "license": "Apache-2.0",
6
6
  "type": "commonjs",