Skip to content

Commit 4921881

Browse files
wasadeclaude
andcommitted
Fix redis service container port mapping to 6379:6379
redis_cache.py hardcodes localhost:6379; dynamic port mapping would miss it. Fixed mapping ensures the service is reachable as expected. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 4240e52 commit 4921881

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
redis:
7777
image: redis
7878
ports:
79-
- 6379/tcp
79+
- 6379:6379
8080
options: >-
8181
--health-cmd "redis-cli ping"
8282
--health-interval 10s

0 commit comments

Comments
 (0)