Skip to content

Commit fd025aa

Browse files
committed
Increase load test and expiration time for session sigs
1 parent 633f30c commit fd025aa

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

e2e/artillery/configs/pkp-sign.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,15 @@ config:
44
# Over 60s, ramp up to creating 50 vusers per second
55
- duration: 60
66
arrivalRate: 5
7-
# rampTo: 50
8-
rampTo: 10
7+
rampTo: 100
98
name: "Ramp Up"
109
# Over 300s, create 50 vusers per second
1110
- duration: 300
12-
# arrivalRate: 50
13-
arrivalRate: 10
11+
arrivalRate: 100
1412
name: "Sustained PKP Signing"
1513
# Over 60s, ramp down to creating 5 vusers per second
1614
- duration: 60
17-
arrivalRate: 5
15+
arrivalRate: 20
1816
name: "Ramp Down"
1917
processor: "../src/processors/multi-endpoints.ts"
2018

e2e/src/init.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,8 @@ export const init = async (
220220
['lit-action-execution', '*'],
221221
['access-control-condition-decryption', '*'],
222222
],
223-
expiration: new Date(Date.now() + 1000 * 60 * 15).toISOString(),
223+
// 30m expiration
224+
expiration: new Date(Date.now() + 1000 * 60 * 30).toISOString(),
224225
},
225226
litClient: litClient,
226227
});

0 commit comments

Comments
 (0)