Skip to content

Commit 62b0192

Browse files
authored
Merge pull request #13 from redis-field-engineering/bugfix/key-names
Bugfix/key names
2 parents 124aa98 + a9be314 commit 62b0192

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: RedisCommon/redis.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ func GetQueries(rdb *redis.Client, applicationName string) ([]*Query, error) {
459459
if !exists {
460460
q := new(Query)
461461
q.Id = id
462-
q.Key = fmt.Sprintf("%s:queries:%s", applicationName, id)
462+
q.Key = fmt.Sprintf("%s:query:%s", applicationName, id)
463463
queries[id] = q
464464
}
465465

Diff for: cmd/root.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
)
1313

1414
const (
15-
version = "0.0.12"
15+
version = "0.0.13"
1616
)
1717

1818
// rootCmd represents the base command when called without any subcommands

0 commit comments

Comments
 (0)