You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
self.redis=storage.RedisStorage(uri=f"async+redis://:{self.redis_password}@{self.redis_host}:{self.redis_port}", connection_pool=self.connection_pool) # fmt: off
21
+
self.redis=storage.RedisStorage(uri=f"async+redis://{self.redis_username}:{self.redis_password}@{self.redis_host}:{self.redis_port}", connection_pool=self.connection_pool) # fmt: off
@@ -112,3 +113,32 @@ For more information about the configuration file, see [Configuration](../gettin
112
113
```
113
114
114
115
Theses metrics are stored in Redis time-series module to determine request prioritisation. For more information about request prioritisation, see [request prioritisation documentation](../models/request_prioritisation.md).
116
+
117
+
### Security
118
+
119
+
We recommend securing your Redis instance by keeping the version up-to-date.
0 commit comments