Skip to content

Commit 7e4ac31

Browse files
committed
increase jwt expiration
1 parent 34260a1 commit 7e4ac31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rmb-sdk-go/peer/connection.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ func (c *InnerConnection) listenAndServe(ctx context.Context, output chan []byte
193193
}
194194

195195
func (c *InnerConnection) connect() (*websocket.Conn, error) {
196-
token, err := NewJWT(c.identity, c.twinID, c.session, 60)
196+
token, err := NewJWT(c.identity, c.twinID, c.session, 100)
197197
if err != nil {
198198
return nil, errors.Wrap(err, "could not create new jwt")
199199
}

0 commit comments

Comments
 (0)