diff options
author | Valery Piashchynski <[email protected]> | 2021-09-13 15:40:57 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2021-09-13 15:40:57 +0300 |
commit | 5d2cd55ab522d4f1e65a833f91146444465a32ac (patch) | |
tree | a374c8e90383d5e868ffe6b44555a55029c54f79 /plugins/redis/pubsub/pubsub.go | |
parent | fe72d84395970281fe330a2b9423f8c0e4c3b9c8 (diff) | |
parent | b8a4b82f82e2cb9f9efc4a3601a97b4ff07fefc7 (diff) |
[#793]: fix(plugins): incorrect parsing local and global drivers sections
[#793]: fix(plugins): incorrect parsing local and global drivers sections
Diffstat (limited to 'plugins/redis/pubsub/pubsub.go')
-rw-r--r-- | plugins/redis/pubsub/pubsub.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/redis/pubsub/pubsub.go b/plugins/redis/pubsub/pubsub.go index c9ad3d58..3561ef18 100644 --- a/plugins/redis/pubsub/pubsub.go +++ b/plugins/redis/pubsub/pubsub.go @@ -13,7 +13,7 @@ import ( type PubSubDriver struct { sync.RWMutex - cfg *Config `mapstructure:"redis"` + cfg *Config log logger.Logger channel *redisChannel @@ -34,6 +34,10 @@ func NewPubSubDriver(log logger.Logger, key string, cfgPlugin config.Configurer, return nil, errors.E(op, err) } + if ps.cfg == nil { + return nil, errors.E(op, errors.Errorf("config not found by provided key: %s", key)) + } + ps.cfg.InitDefaults() ps.universalClient = redis.NewUniversalClient(&redis.UniversalOptions{ |