7 lines
206 B
Bash
7 lines
206 B
Bash
#!/bin/bash
|
|
# 关闭慢请求追踪
|
|
rm -f /etc/systemd/system/gunicorn-dianjing.service.d/slow-trace.conf
|
|
systemctl daemon-reload
|
|
systemctl restart gunicorn-dianjing.service
|
|
echo "慢请求追踪已关闭"
|