From cd0486d5bb7094445a7e59d8c23b28c14854e1ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Mon, 23 Jun 2025 18:36:54 +0200 Subject: [PATCH] ci: set password hash iterations to 100 for API tests This is much faster than the default number of iterations which is 100000). --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1bb6e6e76..9c85b545b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -194,6 +194,7 @@ jobs: weechat-headless \ --dir /tmp/weechat-test-api \ --run-command '/set relay.network.password "${{ env.RELAY_PASSWORD }}"' \ + --run-command '/set relay.network.password_hash_iterations 100' \ --run-command '/set relay.network.max_clients 0' \ --run-command '/relay add api 9000' \ --daemon \