-
Hi, In one of my adonis command I use Redis and this command never ends. Is it a bug? Any idea what I'm doing wrong? Cheers, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
Can you share the code for your command? |
Beta Was this translation helpful? Give feedback.
-
Like the doc says, Redis.quit() is actually waiting for the connection name. Redis.quit('local') if working locally for example. My bad. |
Beta Was this translation helpful? Give feedback.
Like the doc says, Redis.quit() is actually waiting for the connection name.
https://adonisjs.com/docs/4.1/redis#_quitname
Redis.quit('local') if working locally for example.
My bad.