Skip to content

Commit

Permalink
millisecond wait time
Browse files Browse the repository at this point in the history
  • Loading branch information
gouthamp-stellar committed Oct 15, 2024
1 parent ad392d8 commit dbe9629
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/tss/channels/webhook_channel.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func (p *webhookPool) Receive(payload tss.Payload) {
return
}
currentBackoff := p.MinWaitBtwnRetriesMS * (1 << i)
time.Sleep(jitter(time.Duration(currentBackoff)) * time.Microsecond)
time.Sleep(jitter(time.Duration(currentBackoff)) * time.Millisecond)
}
}

Expand Down

0 comments on commit dbe9629

Please sign in to comment.