Skip to content

Commit

Permalink
revert extending time to hold messages
Browse files Browse the repository at this point in the history
  • Loading branch information
carryforward committed Oct 24, 2017
1 parent de3e105 commit e38e8f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/messages/MessageBase.go
Expand Up @@ -125,7 +125,7 @@ func (m *MessageBase) Expire(s interfaces.IState) (rtn bool) {
if m.expire == 0 {
m.expire = now
}
if now-m.expire > 60*60*1000 { // Keep messages for some length before giving up.
if now-m.expire > 5*60*1000 { // Keep messages for some length before giving up.
rtn = true
}
return
Expand Down

0 comments on commit e38e8f3

Please sign in to comment.