Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/mesh/v1alpha1/dynamic_config_helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (

func GetOverridePath(key string) string {
key = strings.Replace(key, "/", "*", -1)
return key + constants.ConfiguratorRuleSuffix
return key + constants.ConfiguratorRuleDotSuffix
}

func (d *DynamicConfig) ListUnGenConfigs() []*OverrideConfig {
Expand Down
68 changes: 0 additions & 68 deletions api/mesh/v1alpha1/traffic_helper.go

This file was deleted.

145 changes: 145 additions & 0 deletions api/mesh/v1alpha1/zk_config.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions api/mesh/v1alpha1/zk_config.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
syntax = "proto3";

package dubbo.mesh.v1alpha1;

option go_package = "github.com/apache/dubbo-admin/api/mesh/v1alpha1";

import "api/mesh/options.proto";

message ZKConfig {
option (dubbo.mesh.resource).name = "ZKConfig";
option (dubbo.mesh.resource).plural_name = "ZKConfig";
option (dubbo.mesh.resource).package = "mesh";
option (dubbo.mesh.resource).is_experimental = true;

string nodeName = 1;

string nodeData = 2;
}
145 changes: 145 additions & 0 deletions api/mesh/v1alpha1/zk_metadata.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading