We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1def705 commit df58fdfCopy full SHA for df58fdf
e2e/artillery/configs/pkp-sign.yml
@@ -12,7 +12,7 @@ config:
12
name: "Sustained PKP Signing"
13
# Over 60s, ramp down to creating 5 vusers per second
14
- duration: 60
15
- arrivalRate: 5
+ arrivalRate: 20
16
name: 'Ramp Down'
17
processor: '../src/processors/multi-endpoints.ts'
18
e2e/artillery/src/processors/multi-endpoints.ts
@@ -324,7 +324,8 @@ export async function runSignSessionKeyTest() {
324
['lit-action-execution', '*'],
325
['access-control-condition-decryption', '*'],
326
],
327
- expiration: new Date(Date.now() + 1000 * 60 * 15).toISOString(),
+ // 30m expiration
328
+ expiration: new Date(Date.now() + 1000 * 60 * 30).toISOString(),
329
},
330
litClient: litClient,
331
cache: {
0 commit comments