Skip to content
Snippets Groups Projects
Commit 733da10c authored by flycash's avatar flycash
Browse files

Fix review

parent 5c275fb4
No related branches found
No related tags found
No related merge requests found
......@@ -172,8 +172,8 @@ func (c *zookeeperDynamicConfiguration) GetConfigKeysByGroup(group string) (*gxs
return nil, perrors.New("could not find keys with group: " + group)
}
set := gxset.NewSet()
for _, ele := range result {
set.Add(ele)
for _, e := range result {
set.Add(e)
}
return set, nil
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment