aboutsummaryrefslogtreecommitdiffstats
path: root/modules/nosql
diff options
context:
space:
mode:
Diffstat (limited to 'modules/nosql')
-rw-r--r--modules/nosql/manager_redis.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/nosql/manager_redis.go b/modules/nosql/manager_redis.go
index d754a0e07d..b4852cecc8 100644
--- a/modules/nosql/manager_redis.go
+++ b/modules/nosql/manager_redis.go
@@ -152,7 +152,7 @@ func (m *Manager) GetRedisClient(connection string) redis.UniversalClient {
opts.Addrs = append(opts.Addrs, strings.Split(uri.Host, ",")...)
}
if uri.Path != "" {
- if db, err := strconv.Atoi(uri.Path); err == nil {
+ if db, err := strconv.Atoi(uri.Path[1:]); err == nil {
opts.DB = db
}
}
@@ -168,7 +168,7 @@ func (m *Manager) GetRedisClient(connection string) redis.UniversalClient {
opts.Addrs = append(opts.Addrs, strings.Split(uri.Host, ",")...)
}
if uri.Path != "" {
- if db, err := strconv.Atoi(uri.Path); err == nil {
+ if db, err := strconv.Atoi(uri.Path[1:]); err == nil {
opts.DB = db
}
}
@@ -186,7 +186,7 @@ func (m *Manager) GetRedisClient(connection string) redis.UniversalClient {
opts.Addrs = append(opts.Addrs, strings.Split(uri.Host, ",")...)
}
if uri.Path != "" {
- if db, err := strconv.Atoi(uri.Path); err == nil {
+ if db, err := strconv.Atoi(uri.Path[1:]); err == nil {
opts.DB = db
}
}