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

This commit is contained in:
GoEdgeLab
2023-10-15 09:02:48 +08:00
parent 0ff6b33fe0
commit 63ff8cbee5

View File

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