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
Somehow my redis keeps getting set to save RDB snapshots. This is not something that I am trying to setup. I am using the docker image for redis and it by default doesn't come with this. I notice this happens after I have restarted my app a few times. It gets fixed by me restarting the redis container. Not sure why this keeps getting set. I just recently switched to this driver as my underlying caching client so I am not sure if it is an issue in the client that keeps setting this or not.
I am using my wrapper for Django and pooled connections with the Hiredis protocol and a JSON Encoder.
File "/utils/caching.py" in decorated
49. await cache.set(self.key, results, self.cache_timeout)
File "/usr/local/lib/python3.6/site-packages/django_asyncio_redis/cache.py" in set
79. resp = await (await self.client).set(key, value, expire=expire, **kwargs)
File "/usr/local/lib/python3.6/site-packages/asyncio_redis/protocol.py" in wrapper
676. result = yield from method(protocol_self, _NoTransaction, *a, **kw)
File "/usr/local/lib/python3.6/site-packages/asyncio_redis/protocol.py" in _query
1135. result = yield from self._get_answer(transaction, answer_f, _bypass=_bypass, call=call)
File "/usr/local/lib/python3.6/site-packages/asyncio_redis/protocol.py" in _get_answer
1062. result = yield from answer_f
Exception Type: ErrorReply
Exception Value: MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands that may modify the data set are disabled. Please check Redis logs for details about the error.
The text was updated successfully, but these errors were encountered:
Somehow my redis keeps getting set to save RDB snapshots. This is not something that I am trying to setup. I am using the docker image for redis and it by default doesn't come with this. I notice this happens after I have restarted my app a few times. It gets fixed by me restarting the redis container. Not sure why this keeps getting set. I just recently switched to this driver as my underlying caching client so I am not sure if it is an issue in the client that keeps setting this or not.
I am using my wrapper for Django and pooled connections with the Hiredis protocol and a JSON Encoder.
The text was updated successfully, but these errors were encountered: