diff options
author | Alex Gleason <alex@alexgleason.me> | 2021-12-03 16:20:54 -0500 |
---|---|---|
committer | Alex Gleason <alex@alexgleason.me> | 2021-12-03 16:20:54 -0500 |
commit | ce4560c2a1c194f7640accf1205e91bf40779043 (patch) | |
tree | a5e86a134b2c9e3bd200eb2e475ea0b7ed495b37 /config | |
parent | 0b2119d4a791b3623b304b0bab683609d23271d4 (diff) | |
download | pleroma-ce4560c2a1c194f7640accf1205e91bf40779043.tar.gz |
Fix benchmarks
Diffstat (limited to 'config')
-rw-r--r-- | config/benchmark.exs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/config/benchmark.exs b/config/benchmark.exs index a4d048f1b..9a7ea5669 100644 --- a/config/benchmark.exs +++ b/config/benchmark.exs @@ -4,8 +4,7 @@ import Config # you can enable the server option below. config :pleroma, Pleroma.Web.Endpoint, http: [port: 4001], - url: [port: 4001], - server: true + url: [port: 4001] # Disable captha for tests config :pleroma, Pleroma.Captcha, @@ -44,7 +43,7 @@ config :pleroma, Pleroma.Repo, pool_size: 10 # Reduce hash rounds for testing -config :pbkdf2_elixir, rounds: 1 +config :pleroma, :password, iterations: 1 config :tesla, adapter: Tesla.Mock |