diff options
author | Joas Schilling <coding@schilljs.com> | 2025-04-15 08:45:50 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2025-04-15 08:45:50 +0200 |
commit | 59d1a49acc5661d762f9831cfecce3f2d7544153 (patch) | |
tree | c7068c3a60167d1076a0f0507cb9e234307d30f1 | |
parent | 338ab643657802c572f8515c8ecc354e34df17c7 (diff) | |
download | nextcloud-server-fix/rate-limit-share-creation.tar.gz nextcloud-server-fix/rate-limit-share-creation.zip |
test: Disable ratelimit as tests trigger itfix/rate-limit-share-creation
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rwxr-xr-x | build/integration/run.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/build/integration/run.sh b/build/integration/run.sh index 4515cd459ae..cbd3cceb3d1 100755 --- a/build/integration/run.sh +++ b/build/integration/run.sh @@ -20,6 +20,8 @@ INSTALLED=$($OCC status | grep installed: | cut -d " " -f 5) if [ "$INSTALLED" == "true" ]; then # Disable bruteforce protection because the integration tests do trigger them $OCC config:system:set auth.bruteforce.protection.enabled --value false --type bool + # Disable rate limit protection because the integration tests do trigger them + $OCC config:system:set ratelimit.protection.enabled --value false --type bool # Allow local remote urls otherwise we can not share $OCC config:system:set allow_local_remote_servers --value true --type bool # Allow self signed certificates |