From b0a7e6f5e762c350110d0eff01968d3c97344b62 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Mon, 1 Jan 2018 19:43:39 +0100 Subject: Reduce bcrypt cost for testsuite Signed-off-by: Florian Pritz --- application/config/config.php | 1 + 1 file changed, 1 insertion(+) 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; } -- cgit v1.2.3-24-g4f1b