#RedisException with DDEV
1 messages · Page 1 of 1 (latest)
Looks like you’re using an incorrect value for the Redis host. You also probably shouldn’t be interacting with real services like Redis in your test suite; Laravel uses drivers for things like the cache and session so that you can set them to “mock” array-based implements rather than using something like Redis.
Gotcha. So do you have any ideas of places I could start looking to resolve this?