Skip to content

Commit a759338

Browse files
authored
fix ai fallback (#1541)
1 parent e68a8ac commit a759338

File tree

5 files changed

+24
-23
lines changed

5 files changed

+24
-23
lines changed

Makefile.core.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ docker-buildx-push: clean-env docker.higress-buildx
144144
export PARENT_GIT_TAG:=$(shell cat VERSION)
145145
export PARENT_GIT_REVISION:=$(TAG)
146146

147-
export ENVOY_PACKAGE_URL_PATTERN?=https://github.com/higress-group/proxy/releases/download/v2.0.0/envoy-symbol-ARCH.tar.gz
147+
export ENVOY_PACKAGE_URL_PATTERN?=https://github.com/higress-group/proxy/releases/download/v2.1.0/envoy-symbol-ARCH.tar.gz
148148

149149
build-envoy: prebuild
150150
./tools/hack/build-envoy.sh

istio/proxy

Submodule proxy updated 1 file

pkg/ingress/config/ingress_config.go

+20-19
Original file line numberDiff line numberDiff line change
@@ -906,6 +906,7 @@ func (m *IngressConfig) convertIstioWasmPlugin(obj *higressext.WasmPlugin) (*ext
906906
StructValue: rule.Config,
907907
}
908908

909+
validRule := false
909910
var matchItems []*_struct.Value
910911
// match ingress
911912
for _, ing := range rule.Ingress {
@@ -916,19 +917,17 @@ func (m *IngressConfig) convertIstioWasmPlugin(obj *higressext.WasmPlugin) (*ext
916917
})
917918
}
918919
if len(matchItems) > 0 {
920+
validRule = true
919921
v.StructValue.Fields["_match_route_"] = &_struct.Value{
920922
Kind: &_struct.Value_ListValue{
921923
ListValue: &_struct.ListValue{
922924
Values: matchItems,
923925
},
924926
},
925927
}
926-
ruleValues = append(ruleValues, &_struct.Value{
927-
Kind: v,
928-
})
929-
continue
930928
}
931929
// match service
930+
matchItems = nil
932931
for _, service := range rule.Service {
933932
matchItems = append(matchItems, &_struct.Value{
934933
Kind: &_struct.Value_StringValue{
@@ -937,39 +936,41 @@ func (m *IngressConfig) convertIstioWasmPlugin(obj *higressext.WasmPlugin) (*ext
937936
})
938937
}
939938
if len(matchItems) > 0 {
939+
validRule = true
940940
v.StructValue.Fields["_match_service_"] = &_struct.Value{
941941
Kind: &_struct.Value_ListValue{
942942
ListValue: &_struct.ListValue{
943943
Values: matchItems,
944944
},
945945
},
946946
}
947-
ruleValues = append(ruleValues, &_struct.Value{
948-
Kind: v,
949-
})
950-
continue
951947
}
952948
// match domain
949+
matchItems = nil
953950
for _, domain := range rule.Domain {
954951
matchItems = append(matchItems, &_struct.Value{
955952
Kind: &_struct.Value_StringValue{
956953
StringValue: domain,
957954
},
958955
})
959956
}
960-
if len(matchItems) == 0 {
961-
return nil, fmt.Errorf("invalid match rule has no match condition, rule:%v", rule)
962-
}
963-
v.StructValue.Fields["_match_domain_"] = &_struct.Value{
964-
Kind: &_struct.Value_ListValue{
965-
ListValue: &_struct.ListValue{
966-
Values: matchItems,
957+
if len(matchItems) > 0 {
958+
validRule = true
959+
v.StructValue.Fields["_match_domain_"] = &_struct.Value{
960+
Kind: &_struct.Value_ListValue{
961+
ListValue: &_struct.ListValue{
962+
Values: matchItems,
963+
},
967964
},
968-
},
965+
}
966+
}
967+
if validRule {
968+
ruleValues = append(ruleValues, &_struct.Value{
969+
Kind: v,
970+
})
971+
} else {
972+
return nil, fmt.Errorf("invalid match rule has no match condition, rule:%v", rule)
969973
}
970-
ruleValues = append(ruleValues, &_struct.Value{
971-
Kind: v,
972-
})
973974
}
974975
if len(ruleValues) > 0 {
975976
hasValidRule = true

0 commit comments

Comments
 (0)