Commit cbade4e
fix(test-backend): set REDIS_PASSWORD for Settings validation
Fixed Settings validation error by setting REDIS_PASSWORD to dummy value.
Root cause: Settings model requires REDIS_PASSWORD (required field, line 79
in config.py). Setting it to empty string "" caused Pydantic validation
error: 'Field required'.
Solution: Set REDIS_PASSWORD to 'test-redis-password' (matches test-e2e.yml).
Note that Redis service container has no authentication - password is only
needed to satisfy Settings validation, not actually used for connection.
This aligns with test-e2e.yml pattern which also sets REDIS_PASSWORD to
dummy value despite Redis service container having no auth.
Related to CUR-46
🤖 Generated by Aygentic
Co-Authored-By: Aygentic <[email protected]>1 parent 3302263 commit cbade4e
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
91 | 91 | | |
92 | 92 | | |
93 | 93 | | |
94 | | - | |
| 94 | + | |
95 | 95 | | |
96 | 96 | | |
97 | 97 | | |
| |||
0 commit comments