-
Example output (currently logging when each hook fires):
This is a problem because my deployments no longer work because the adonis commands never exit. Any suggestions as to what I might have done to introduce this would be very much appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Found out this was due to initializing Redis in one of my providers. My solution was to update the |
Beta Was this translation helpful? Give feedback.
Found out this was due to initializing Redis in one of my providers. My solution was to update the
ace
file in the project root to setprocess.env.IS_ACE = "true"
, and initialize a mock instance of Redis (viaredis-mock
), so that no connection to redis is actually made for ace commands. This is maybe not an ideal solution, but I'm not currently using Redis in any of my commands, so for now this works.