X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=config%2Fbenchmark.exs;h=84c6782a298d985e59c5d3d118233b86aea12dbd;hb=814b275af7748df6bd11dfc6be1b4efce8d5ae70;hp=289a0e317b54c54f177c85d45c93235fcdad5c6d;hpb=2629493804bb5522903434cef7fe70510725f0c1;p=akkoma diff --git a/config/benchmark.exs b/config/benchmark.exs index 289a0e317..84c6782a2 100644 --- a/config/benchmark.exs +++ b/config/benchmark.exs @@ -41,7 +41,7 @@ config :pleroma, Pleroma.Repo, password: "postgres", database: "pleroma_test", hostname: System.get_env("DB_HOST") || "localhost", - pool: Ecto.Adapters.SQL.Sandbox + pool_size: 10 # Reduce hash rounds for testing config :pbkdf2_elixir, rounds: 1 @@ -82,3 +82,11 @@ config :pleroma, :database, rum_enabled: rum_enabled IO.puts("RUM enabled: #{rum_enabled}") config :pleroma, Pleroma.ReverseProxy.Client, Pleroma.ReverseProxy.ClientMock + +if File.exists?("./config/benchmark.secret.exs") do + import_config "benchmark.secret.exs" +else + IO.puts( + "You may want to create benchmark.secret.exs to declare custom database connection parameters." + ) +end