We are running 4 separate elixir applications in the same cluster. Each application talks to each other using :pg. But each application has its own Oban instance running. We were running into issues where other nodes were showing up in the dashboard.
I tried setting just name: MyApp.Oban and on the dashboard router helper oban_name: MyApp.Oban. This did not work. Locally I made the following changes in my deps/ directory, recompiled and this seems to do the trick.
If you have a better solution, feel free to close this. I just wanted to bring this up as potential solution.
We are running 4 separate elixir applications in the same cluster. Each application talks to each other using
:pg
. But each application has its ownOban
instance running. We were running into issues where other nodes were showing up in the dashboard.I tried setting just
name: MyApp.Oban
and on the dashboard router helperoban_name: MyApp.Oban
. This did not work. Locally I made the following changes in mydeps/
directory, recompiled and this seems to do the trick.If you have a better solution, feel free to close this. I just wanted to bring this up as potential solution.