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:
@@ -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)",
|
||||
)
|
||||
|
||||
# ==========================================================================
|
||||
|
||||
Reference in New Issue
Block a user