fix(config): Share Redis DB 0 with OpenClaw

- Change REDIS_URL from DB 10 to DB 0
- AWOOOI and OpenClaw now share the same Redis database
- Incidents created by OpenClaw visible in AWOOOI UI

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
OG T
2026-03-24 18:44:34 +08:00
parent 80b06e72a3
commit 22cada563b
2 changed files with 5 additions and 5 deletions

View File

@@ -89,11 +89,11 @@ class Settings(BaseSettings):
)
# ==========================================================================
# Redis (192.168.0.188:6380, DB 10-15 for AWOOOI)
# Redis (192.168.0.188:6380, DB 0 - 與 OpenClaw 共用)
# ==========================================================================
REDIS_URL: str = Field(
default="redis://192.168.0.188:6380/10",
description="Redis connection URL (DB 10-15 reserved for AWOOOI)",
default="redis://192.168.0.188:6380/0",
description="Redis connection URL (DB 0 shared with OpenClaw)",
)
# ==========================================================================