asad-awadia opened a new issue, #2156:
URL: https://github.com/apache/kvrocks/issues/2156

   ### Search before asking
   
   - [X] I had searched in the 
[issues](https://github.com/apache/kvrocks/issues) and found no similar issues.
   
   
   ### Version
   
   KVRocks version 2.8.0 and nightly
   
   ### Minimal reproduce step
   
   Clone : https://gitlab.com/asad-awadia/kotlin-server-app - if a 
project/environment is required
   
   ```
   fun main() {
     val redisClient = 
RedisClient.create(RedisURI.builder().withHost("0.0.0.0").withPort(6666).build())
     val pubSub = redisClient.connectPubSub()
     pubSub.addListener { println("received push message ${it.content}") }
     pubSub.sync().subscribe("channel")
     redisClient.connect().sync().publish("channel", "foo")
     Thread.sleep(5000)
   }
   ```
   
   ### What did you expect to see?
   
   The message callback listener is invoked with the message sent in the 
subscribe call
   
   ### What did you see instead?
   
   No message is received - the listener callback is not invoked
   
   ### Anything Else?
   
   _No response_
   
   ### Are you willing to submit a PR?
   
   - [ ] I'm willing to submit a PR!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to