Skip to content

Commit df58fdf

Browse files
committed
Fix rebase
1 parent 1def705 commit df58fdf

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

e2e/artillery/configs/pkp-sign.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ config:
1212
name: "Sustained PKP Signing"
1313
# Over 60s, ramp down to creating 5 vusers per second
1414
- duration: 60
15-
arrivalRate: 5
15+
arrivalRate: 20
1616
name: 'Ramp Down'
1717
processor: '../src/processors/multi-endpoints.ts'
1818

e2e/artillery/src/processors/multi-endpoints.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,8 @@ export async function runSignSessionKeyTest() {
324324
['lit-action-execution', '*'],
325325
['access-control-condition-decryption', '*'],
326326
],
327-
expiration: new Date(Date.now() + 1000 * 60 * 15).toISOString(),
327+
// 30m expiration
328+
expiration: new Date(Date.now() + 1000 * 60 * 30).toISOString(),
328329
},
329330
litClient: litClient,
330331
cache: {

0 commit comments

Comments
 (0)