Use config to control streamer registry
This commit is contained in:
parent
4bb57d4f25
commit
17877f612e
4 changed files with 20 additions and 15 deletions
|
|
@ -80,7 +80,8 @@ IO.puts("RUM enabled: #{rum_enabled}")
|
|||
config :pleroma, Pleroma.ReverseProxy.Client, Pleroma.ReverseProxy.ClientMock
|
||||
|
||||
config :pleroma, Pleroma.Application,
|
||||
background_migrators: false
|
||||
background_migrators: false,
|
||||
streamer_registry: false
|
||||
|
||||
if File.exists?("./config/benchmark.secret.exs") do
|
||||
import_config "benchmark.secret.exs"
|
||||
|
|
|
|||
|
|
@ -908,7 +908,8 @@ config :pleroma, Pleroma.Application,
|
|||
background_migrators: true,
|
||||
internal_fetch: true,
|
||||
load_custom_modules: true,
|
||||
max_restarts: 3
|
||||
max_restarts: 3,
|
||||
streamer_registry: true
|
||||
|
||||
# Import environment specific config. This must remain at the bottom
|
||||
# of this file so it overrides the configuration defined above.
|
||||
|
|
|
|||
|
|
@ -166,7 +166,8 @@ config :pleroma, Pleroma.Application,
|
|||
background_migrators: false,
|
||||
internal_fetch: false,
|
||||
load_custom_modules: false,
|
||||
max_restarts: 100
|
||||
max_restarts: 100,
|
||||
streamer_registry: false
|
||||
|
||||
if File.exists?("./config/test.secret.exs") do
|
||||
import_config "test.secret.exs"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue