We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1aeb063 commit d5a1cacCopy full SHA for d5a1cac
tests/scalers/azure-blob.test.ts
@@ -36,7 +36,7 @@ test.serial.cb('Deployment should scale to 4 with 2000 blobs on the blob contain
36
const blobSvc = azure.createBlobService(connectionString)
37
blobSvc.createContainerIfNotExists('container-name', err => {
38
t.falsy(err, 'unable to create blob')
39
- async.mapLimit(Array(2000).keys(), 200, (n, cb) => blobSvc.createBlockBlobFromText('container-name',`blobsubpath/blob-name-${n}`,'test text', cb), () => {
+ async.mapLimit(Array(2000).keys(), 500, (n, cb) => blobSvc.createBlockBlobFromText('container-name',`blobsubpath/blob-name-${n}`,'test text', cb), () => {
40
let replicaCount = '0'
41
for (let i = 0; i < 10 && replicaCount !== '4'; i++) {
42
replicaCount = sh.exec(`kubectl get deployment.apps/test-deployment --namespace ${defaultNamespace} -o jsonpath="{.spec.replicas}"`).stdout
0 commit comments