Skip to content

Commit 43f21c0

Browse files
committed
fix: fallback cannot be unfixed
1 parent 56fe7d5 commit 43f21c0

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

hub/route/groups.go

+9-3
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,15 @@ func getGroupDelay(w http.ResponseWriter, r *http.Request) {
6060
return
6161
}
6262

63-
if proxy.(*adapter.Proxy).Type() == C.URLTest {
64-
URLTestGroup := proxy.(*adapter.Proxy).ProxyAdapter.(*outboundgroup.URLTest)
65-
URLTestGroup.ForceSet("")
63+
switch proxy.(*adapter.Proxy).Type() {
64+
case C.URLTest:
65+
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+
}
6672
}
6773

6874
if proxy.(*adapter.Proxy).Type() != C.Selector {

0 commit comments

Comments
 (0)