We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
client.end()
pubsub
The cause was in that this.pubClient and this.subClient were undefined. See https://github.com/strongloop/strong-pubsub-redis/blob/master/index.js#L73-L74.
this.pubClient
this.subClient
undefined
Looks like these variables were not assigned in constructor or should they be changed to this.redisPubClient and this.redisSubClient.
this.redisPubClient
this.redisSubClient
The text was updated successfully, but these errors were encountered:
fixed crash if closed from client
aa8b3fe
fixed strongloop#6
1c2261e
Successfully merging a pull request may close this issue.
The cause was in that
this.pubClient
andthis.subClient
wereundefined
. Seehttps://github.com/strongloop/strong-pubsub-redis/blob/master/index.js#L73-L74.
Looks like these variables were not assigned in constructor or should they be changed to
this.redisPubClient
andthis.redisSubClient
.The text was updated successfully, but these errors were encountered: