From c2d159a757309c9a7586c9f05dfb79662385d688 Mon Sep 17 00:00:00 2001 From: bigcat88 Date: Wed, 16 Apr 2025 10:53:15 +0300 Subject: [PATCH] fix CI: disabled NC ratelimiting Signed-off-by: bigcat88 --- .github/workflows/analysis-coverage.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/analysis-coverage.yml b/.github/workflows/analysis-coverage.yml index d3fcdcd4..159ba789 100644 --- a/.github/workflows/analysis-coverage.yml +++ b/.github/workflows/analysis-coverage.yml @@ -94,6 +94,7 @@ jobs: --admin-user admin --admin-pass ${{ env.NC_AUTH_PASS }} php occ config:system:set loglevel --value=1 --type=integer php occ config:system:set debug --value=true --type=boolean + php occ config:system:set ratelimit.protection.enabled --value=false --type=boolean PHP_CLI_SERVER_WORKERS=2 php -S localhost:8080 & - name: Checkout NcPyApi @@ -222,6 +223,7 @@ jobs: --admin-user admin --admin-pass ${{ env.NC_AUTH_PASS }} ./occ config:system:set loglevel --value=0 --type=integer ./occ config:system:set debug --value=true --type=boolean + ./occ config:system:set ratelimit.protection.enabled --value=false --type=boolean ./occ app:enable notifications PHP_CLI_SERVER_WORKERS=2 php -S localhost:8080 & @@ -387,6 +389,7 @@ jobs: --admin-user admin --admin-pass ${{ env.NC_AUTH_PASS }} ./occ config:system:set loglevel --value=0 --type=integer ./occ config:system:set debug --value=true --type=boolean + ./occ config:system:set ratelimit.protection.enabled --value=false --type=boolean ./occ app:enable notifications ./occ app:enable activity PHP_CLI_SERVER_WORKERS=2 php -S localhost:8080 & @@ -543,6 +546,7 @@ jobs: --admin-user admin --admin-pass ${{ env.NC_AUTH_PASS }} ./occ config:system:set loglevel --value=0 --type=integer ./occ config:system:set debug --value=true --type=boolean + ./occ config:system:set ratelimit.protection.enabled --value=false --type=boolean ./occ app:enable activity PHP_CLI_SERVER_WORKERS=2 php -S localhost:8080 &