diff options
author | Florian Pritz <bluewind@xinu.at> | 2018-01-01 19:43:39 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2018-01-01 19:43:39 +0100 |
commit | b0a7e6f5e762c350110d0eff01968d3c97344b62 (patch) | |
tree | 0d68c07eddbf666dc62e48e5ce84de61242505d5 | |
parent | eb00062b4e7aba506988433320827a435bfb9176 (diff) |
Reduce bcrypt cost for testsuite
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r-- | application/config/config.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/application/config/config.php b/application/config/config.php index 7aab610f3..4f4e868f0 100644 --- a/application/config/config.php +++ b/application/config/config.php @@ -649,4 +649,5 @@ if (getenv("ENVIRONMENT") === "testsuite" && isset($_SERVER['SERVER_PORT'])) { if (getenv("ENVIRONMENT") === "testsuite") { $config['upload_path'] = FCPATH.'testsuite-tmp'; + $config['auth_db']['hashing_options']['cost'] = 5; } |