Skip to content

Commit

Permalink
Fix auth shutdown to correct idle time (30 days)
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigok committed Feb 1, 2016
1 parent 22fc503 commit 546ad88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/rocketchat-tutum/startup.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if process.env.TUTUM_REDIS_HOST?
client.rpush("frontend:#{process.env.TUTUM_CLIENT_HOST}", process.env.TUTUM_CLIENT_NAME)
client.rpush("frontend:#{process.env.TUTUM_CLIENT_HOST}", "http://#{process.env.TUTUM_IP_ADDRESS.split('/')[0]}:3000")

day = 3600000
day = 86400000

inactiveDays = 30

Expand Down

0 comments on commit 546ad88

Please sign in to comment.