From 2b7b512807f3bdc92d64379b6495fbf82f0ee9ed Mon Sep 17 00:00:00 2001 From: tobiasKaminsky Date: Thu, 8 May 2025 08:21:00 +0200 Subject: [PATCH] Disable rate limit protection because the integration tests do trigger them Signed-off-by: tobiasKaminsky --- .drone.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 61368bf80d..613fdd3f0c 100644 --- a/.drone.yml +++ b/.drone.yml @@ -113,6 +113,7 @@ services: - su www-data -c "php /var/www/html/occ app:enable -f files_downloadlimit" - su www-data -c "git clone --depth 1 -b master https://github.com/nextcloud/recommendations.git /var/www/html/apps/recommendations/" - su www-data -c "php /var/www/html/occ app:enable -f recommendations" + - su www-data -c "php /var/www/html/occ config:system:set ratelimit.protection.enabled --value false --type bool" - /usr/local/bin/run.sh trigger: @@ -232,6 +233,7 @@ services: - su www-data -c "php /var/www/html/occ app:enable -f files_downloadlimit" - su www-data -c "git clone --depth 1 -b $SERVER_VERSION https://github.com/nextcloud/recommendations.git /var/www/html/apps/recommendations/" - su www-data -c "php /var/www/html/occ app:enable recommendations" + - su www-data -c "php /var/www/html/occ config:system:set ratelimit.protection.enabled --value false --type bool" - /usr/local/bin/run.sh trigger: @@ -243,6 +245,6 @@ trigger: - pull_request --- kind: signature -hmac: f9e2219ba5004d6abb6eb04ede0dedf0b9d5f20d8769228c1e48a09451a54b06 +hmac: 4d9e2296a2418db6dae22e94c282a4b356788d99c268d722721dddddd35f43b3 ...