Skip to content

Commit 3d8b810

Browse files
authored
Merge pull request #3533 from artilleryio/fix/playwright-trace-upload
feat: improve Playwright trace capture
2 parents 55fa02f + 5800843 commit 3d8b810

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/artillery-engine-playwright/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class PlaywrightEngine {
7474

7575
// We use this to make sure only one VU is recording at one time:
7676
this.MAX_CONCURRENT_RECORDINGS =
77-
this.tracingConfig.maxConcurrentRecordings || 3; // maximum number of VUs that can record at the same time
77+
this.tracingConfig.maxConcurrentRecordings || 5; // maximum number of VUs that can record at the same time
7878
this.vusRecording = 0; // number of VUs currently recording
7979

8080
//

packages/artillery/lib/platform/cloud/cloud.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ class ArtilleryCloudPlugin {
190190
);
191191
}
192192

193-
await this.waitOnUnprocessedLogs(30 * 1000); //just waiting for ee is not enough, as the api call takes time
193+
await this.waitOnUnprocessedLogs(5 * 60 * 1000); //just waiting for ee is not enough, as the api call takes time
194194

195195
if (isInteractiveUse) {
196196
await this._event('testrun:end', {

0 commit comments

Comments
 (0)