Replies: 2 comments
-
It's easier to set |
Beta Was this translation helpful? Give feedback.
0 replies
-
Seeing the same problem. The
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I may be missing something here, but the following is happening to me: In my Phoenix web application, I'm trying to run
exq
andexq_scheduler
on a separate worker node only, not the main web one, so I've setstart_on_application: false
in both configurations, this is theconfig.exs
:And this is in the
application.ex start/2
:worker_only_children = [Exq, ExqScheduler]
.But I keep getting this error:
Now, if I put this in the
application.ex
:The worker node successfully starts, so it seems to me like the
exq_scheduler
is not getting its config values when I try to manually start it with the application start. Does anyone know what could be causing this? Am I missing any config?Beta Was this translation helpful? Give feedback.
All reactions