Update from Sync Service

This commit is contained in:
FNS Service
2026-07-31 15:28:08 +08:00
commit b8a78631a4
569 changed files with 193313 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
## 错误记录
### redis.exceptions.ResponseError: MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk.
1. 现象:在执行命令时Redis报错,如下:
```shell
 redis.exceptions.ResponseError: MISCONF Redis is configured to save RDB snapshots, but it is currently not able to persist on disk.
```
2. 原因:Redis集群问题,根本原因需要检查Redis log并确认
3. 解决方案:**该方法为临时解决方案**
对Redis进行如下设置:
```python
 redis_cli.config_set("stop-writes-on-bgsave-error", "no")
```