Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: fix zk listener func pathToKey #1066

Merged
merged 5 commits into from
Mar 10, 2021
Merged
Changes from 1 commit
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
Next Next commit
fix zk listener func pathToKey
  • Loading branch information
yakecanlee committed Feb 26, 2021
commit 86e1dbd0155ec9610ae919f02bce64efdcf17543
3 changes: 2 additions & 1 deletion config_center/zookeeper/listener.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,6 @@ func (l *CacheListener) DataChange(event remoting.Event) bool {
}

func (l *CacheListener) pathToKey(path string) string {
return strings.Replace(strings.Replace(path, l.rootPath+"/", "", -1), "/", ".", -1)
groupKey := strings.Replace(strings.Replace(path, l.rootPath+"/", "", -1), "/", ".", -1)
return groupKey[strings.Index(groupKey, ".")+1:]
}