We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56fe7d5 commit 43f21c0Copy full SHA for 43f21c0
hub/route/groups.go
@@ -60,9 +60,15 @@ func getGroupDelay(w http.ResponseWriter, r *http.Request) {
60
return
61
}
62
63
- if proxy.(*adapter.Proxy).Type() == C.URLTest {
64
- URLTestGroup := proxy.(*adapter.Proxy).ProxyAdapter.(*outboundgroup.URLTest)
65
- URLTestGroup.ForceSet("")
+ switch proxy.(*adapter.Proxy).Type() {
+ case C.URLTest:
+ if urlTestGroup, ok := proxy.(*adapter.Proxy).ProxyAdapter.(*outboundgroup.URLTest); ok {
66
+ urlTestGroup.ForceSet("")
67
+ }
68
+ case C.Fallback:
69
+ if fallbackGroup, ok := proxy.(*adapter.Proxy).ProxyAdapter.(*outboundgroup.Fallback); ok {
70
+ fallbackGroup.ForceSet("")
71
72
73
74
if proxy.(*adapter.Proxy).Type() != C.Selector {
0 commit comments