diff options
author | Josh <josh.t.richards@gmail.com> | 2024-05-27 10:50:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-27 10:50:16 -0400 |
commit | 10b6fe092cbd6772e2044c08e05c6393fc0a9a00 (patch) | |
tree | a9870f7799ff0f012841bad1fcab0c4a4326713a | |
parent | d87c23242b96903d59b978a936179f5441c26773 (diff) | |
download | nextcloud-server-jtr/fix-tests/mysql-phpunit-health.tar.gz nextcloud-server-jtr/fix-tests/mysql-phpunit-health.zip |
fix(tests): Try to fix phpunit-mysql healthcheck vs runner poll conflictjtr/fix-tests/mysql-phpunit-health
Signed-off-by: Josh <josh.t.richards@gmail.com>
-rw-r--r-- | .github/workflows/phpunit-mysql.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/phpunit-mysql.yml b/.github/workflows/phpunit-mysql.yml index 47329f92db0..13bcca63667 100644 --- a/.github/workflows/phpunit-mysql.yml +++ b/.github/workflows/phpunit-mysql.yml @@ -77,7 +77,7 @@ jobs: MYSQL_USER: oc_autotest MYSQL_PASSWORD: nextcloud MYSQL_DATABASE: oc_autotest - options: --health-cmd="mysqladmin ping" --health-interval 5s --health-timeout 2s --health-retries 5 + options: --health-cmd="mysqladmin ping" --health-interval 2s --health-timeout 2s --health-retries 5 steps: - name: Checkout server |