取消反向代理中默认自动50x尝试

This commit is contained in:
刘祥超
2023-10-15 09:02:48 +08:00
parent 06a3db911c
commit 5340e5ad52

View File

@@ -18,7 +18,7 @@ const (
func NewReverseProxyConfig() *ReverseProxyConfig {
return &ReverseProxyConfig{
Retry50X: true,
Retry50X: false, // 不要改为true太多人使用50x作为特殊业务代码使用了
}
}