Skip to content

Commit

Permalink
Merge pull request #368 from FactomProject/FD-309
Browse files Browse the repository at this point in the history
Fd 309
  • Loading branch information
PaulSnow committed Nov 10, 2017
2 parents 208456a + e38e8f3 commit 11dfff1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/messages/MessageBase.go
Original file line number Diff line number Diff line change
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 11dfff1

Please sign in to comment.