summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2019-10-10 15:01:06 +0200
committerlain <lain@soykaf.club>2019-10-10 15:01:06 +0200
commit2629493804bb5522903434cef7fe70510725f0c1 (patch)
tree88eee8e3c80788732f792d8c667bf660ba7220c0
parentc54ae662dcc08c0c04a1dff7bb7a361665e877b8 (diff)
downloadpleroma-2629493804bb5522903434cef7fe70510725f0c1.tar.gz
pleroma-2629493804bb5522903434cef7fe70510725f0c1.zip
Benchmark config: Database adjustments.
-rw-r--r--config/benchmark.exs13
1 files changed, 4 insertions, 9 deletions
diff --git a/config/benchmark.exs b/config/benchmark.exs
index 62ba42e28..289a0e317 100644
--- a/config/benchmark.exs
+++ b/config/benchmark.exs
@@ -37,16 +37,11 @@ config :pleroma, :activitypub, sign_object_fetches: false
# Configure your database
config :pleroma, Pleroma.Repo,
adapter: Ecto.Adapters.Postgres,
- username: System.get_env("DB_USER") || "postgres",
- database: System.get_env("DB_DATABASE") || "pleroma_test",
+ username: "postgres",
+ password: "postgres",
+ database: "pleroma_test",
hostname: System.get_env("DB_HOST") || "localhost",
- # username: "pleroma",
- password:
- System.get_env("DB_PASS") ||
- "cAUrGezwXjRwd/lIPzZAcwjb/hiZiGi3FIaSGy9l/XsTcGA61FMy7eCBiRcg1DyQ",
- # password: "",
- pool_size: 10,
- timeout: 180_000
+ pool: Ecto.Adapters.SQL.Sandbox
# Reduce hash rounds for testing
config :pbkdf2_elixir, rounds: 1