From 694180a748995d7ed6bb4eda388b0b5c72a99938 Mon Sep 17 00:00:00 2001 From: zeekay Date: Tue, 16 Jun 2026 15:39:19 -0700 Subject: [PATCH] chore(hanzo-memory): drop orphaned Redis service from compose MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `memory` service never set REDIS_URL and never wired itself to the Redis container. Runtime config (src/hanzo_memory/config.py) defaults redis_url=None — caching via Redis is optional and unconfigured. The `redis:` block was a dead, profile-gated (with-cache) declaration with no consumer. Per "no redis, no kv" policy: remove the orphaned block and its volume. No consumer migration needed (nothing consumed it). --- pkg/hanzo-memory/compose.yml | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/pkg/hanzo-memory/compose.yml b/pkg/hanzo-memory/compose.yml index d99c2c0c3..57350af66 100644 --- a/pkg/hanzo-memory/compose.yml +++ b/pkg/hanzo-memory/compose.yml @@ -18,17 +18,4 @@ services: test: ["CMD", "curl", "-f", "http://localhost:4000/health"] interval: 30s timeout: 10s - retries: 3 - - # Optional: Redis for caching - redis: - image: redis:7-alpine - ports: - - "6379:6379" - volumes: - - redis_data:/data - profiles: - - with-cache - -volumes: - redis_data: \ No newline at end of file + retries: 3 \ No newline at end of file