You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the process is no worker, the application shuts down as TypeError: Cannot read property 'tasks' of undefined
This because profile can be null, as stated in the method configuration (if the process is not a worker). The configure method will fail because you're accessing the profile object in the configureExchangesAndQueues method.
If the process is no worker, the application shuts down as
TypeError: Cannot read property 'tasks' of undefined
This because profile can be null, as stated in the method configuration (if the process is not a worker). The configure method will fail because you're accessing the profile object in the configureExchangesAndQueues method.
I can open a PR to check if profile is null or do you want to handle it differently?
My current solution is just the following:
The text was updated successfully, but these errors were encountered: