Skip to content

Commit ad0acc9

Browse files
committed
Increase Canton JWT expiry
1 parent 8cdc115 commit ad0acc9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

framework/.changeset/v0.13.3.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
- Add Canton JWT authentication
2+
- Increase JWT token expiry

framework/components/blockchain/canton.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313

1414
const (
1515
DefaultCantonPort = "8080"
16-
TokenExpiry = time.Hour * 24
16+
TokenExpiry = time.Hour * 24 * 365 * 10 // 10 years
1717
)
1818

1919
type CantonEndpoints struct {

0 commit comments

Comments
 (0)