Reduce parallellism in locker integration test (#407)

## Changes

This test is hitting request throttling. A lower number of parallel
routines acquiring it should be sufficient.

## Tests

n/a
This commit is contained in:
Pieter Noordhuis 2023-05-25 13:22:51 +00:00 committed by GitHub
parent 6141476ca2
commit 854444077f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -47,8 +47,8 @@ func TestAccLock(t *testing.T) {
require.NoError(t, err)
remoteProjectRoot := createRemoteTestProject(t, "lock-acc-", wsc)
// 50 lockers try to acquire a lock at the same time
numConcurrentLocks := 50
// 5 lockers try to acquire a lock at the same time
numConcurrentLocks := 5
// Keep single locker unlocked.
// We use this to check on the current lock through GetActiveLockState.