fix: Fix mode dependent processes starting (#10641)

vb-dockerfile-nonroot-only
Qwerty5Uiop 3 months ago committed by GitHub
parent 1b3f84bad7
commit e7f14c3dcd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      apps/explorer/lib/explorer/application.ex

@ -210,7 +210,7 @@ defmodule Explorer.Application do
end
defp configure_mode_dependent_process(process, mode) do
if Application.get_env(:explorer, :mode) in [mode, :all] do
if should_start?(process) and Application.get_env(:explorer, :mode) in [mode, :all] do
process
else
[]

Loading…
Cancel
Save