We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70c3f0f commit 88ee07eCopy full SHA for 88ee07e
1 file changed
README.md
@@ -74,3 +74,15 @@ make lint-fix-unsafe
74
# Run both "make format" and "make lint-fix-unsafe" (usually what you want)
75
make fix
76
```
77
+
78
+# Useful production commands
79
80
+Restart all services:
81
+```bash
82
+supervisorctl restart cfbot_worker: cfbot_api
83
+```
84
85
+Reset backoff from all submissions:
86
+```sql
87
+UPDATE submission set backoff_until = NULL, last_backoff = NULL where backoff_until is not null;
88
0 commit comments