mirror of
https://github.com/drakkan/sftpgo.git
synced 2024-11-21 23:20:24 +00:00
Revert "notifier plugin: fix failed events recovery"
This reverts commit 92af6efc0c
.
Signed-off-by: Nicola Murino <nicola.murino@gmail.com>
This commit is contained in:
parent
92122bd962
commit
6c6a6e3d16
1 changed files with 1 additions and 1 deletions
|
@ -193,7 +193,7 @@ func (p *notifierPlugin) canQueueEvent(timestamp int64) bool {
|
|||
if p.config.NotifierOptions.RetryMaxTime == 0 {
|
||||
return false
|
||||
}
|
||||
if time.Now().After(time.Unix(0, timestamp).Add(time.Duration(p.config.NotifierOptions.RetryMaxTime) * time.Second)) {
|
||||
if time.Now().After(util.GetTimeFromMsecSinceEpoch(timestamp).Add(time.Duration(p.config.NotifierOptions.RetryMaxTime) * time.Second)) {
|
||||
return false
|
||||
}
|
||||
if p.config.NotifierOptions.RetryQueueMaxSize > 0 {
|
||||
|
|
Loading…
Reference in a new issue