Disable Ecto logging in tests

The debug logs are very noisy and can be enabled during analysis of a specific error believed to be SQL-related
This commit is contained in:
Mark Felder 2024-06-18 15:25:17 +00:00
parent 3aed111a42
commit e628d00a81

View file

@ -49,7 +49,8 @@ config :pleroma, Pleroma.Repo,
hostname: System.get_env("DB_HOST") || "localhost",
port: System.get_env("DB_PORT") || "5432",
pool: Ecto.Adapters.SQL.Sandbox,
pool_size: System.schedulers_online() * 2
pool_size: System.schedulers_online() * 2,
log: false
config :pleroma, :dangerzone, override_repo_pool_size: true