mirror of https://github.com/databricks/cli.git
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:
parent
6141476ca2
commit
854444077f
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue