Skip to content

Commit

Permalink
increased logout time with 1min
Browse files Browse the repository at this point in the history
Signed-off-by: Abdul-Az <aazeez@progress.com>
  • Loading branch information
iamazzeez authored and kalroy committed Aug 10, 2021
1 parent 8b82d74 commit 54edbb1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ export class ChefSessionService implements CanActivate {

function timerIncrement() {
idleTime = idleTime + 1;
if (idleTime === idleTimeout) {
if (idleTime === idleTimeout + 1) {
this.logout();
}
}
Expand Down

0 comments on commit 54edbb1

Please sign in to comment.