Skip to content

Commit 484b3d4

Browse files
Merge pull request #2 from sohandsomejie/fix/issue-1430-yongjie
Fix/issue 1430 yongjie
2 parents 1efdb31 + 9b5c436 commit 484b3d4

119 files changed

Lines changed: 6149 additions & 8846 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

api/mesh/v1alpha1/dynamic_config_helper.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
)
2525

2626
func GetOverridePath(key string) string {
27-
key = strings.Replace(key, "/", "*", -1)
27+
key = strings.ReplaceAll(key, "/", "*")
2828
return key + constants.ConfiguratorRuleDotSuffix
2929
}
3030

api/mesh/v1alpha1/service.pb.go

Lines changed: 25 additions & 53 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/mesh/v1alpha1/service.proto

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,5 @@ message Service{
2121

2222
string language = 4;
2323

24-
repeated string providers = 5;
25-
26-
repeated string consumers = 6;
27-
28-
map<string, string> features = 99;
29-
}
24+
repeated string methods = 5;
25+
}

0 commit comments

Comments
 (0)