Skip to content

Commit

Permalink
fix: extend token expiration time (#2239)
Browse files Browse the repository at this point in the history
* fix: extend token expiration time

* extend to 5 min
  • Loading branch information
klu909 authored Oct 7, 2020
1 parent 0faaaa9 commit 8e8b627
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/builds/steps/logs.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ module.exports = config => ({
config.authConfig.jwtPrivateKey,
{
algorithm: 'RS256',
expiresIn: '5s',
expiresIn: '300s',
jwtid: uuid.v4()
}
);
Expand Down

0 comments on commit 8e8b627

Please sign in to comment.