mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
Merge pull request #1140 from c9s/fix/max-nonce-updater
FIX: maxapi: improve log message
This commit is contained in:
commit
5849b39a22
|
@ -39,7 +39,7 @@ const (
|
|||
// 2018-09-01 08:00:00 +0800 CST
|
||||
TimestampSince = 1535760000
|
||||
|
||||
maxAllowedDelayedTimeOffset = -20
|
||||
maxAllowedNegativeTimeOffset = -20
|
||||
)
|
||||
|
||||
var httpTransportMaxIdleConnsPerHost = http.DefaultMaxIdleConnsPerHost
|
||||
|
@ -174,12 +174,12 @@ func (c *RestClient) queryAndUpdateServerTimestamp(ctx context.Context) {
|
|||
|
||||
if offset < 0 {
|
||||
// avoid updating a negative offset: server time is before the local time
|
||||
if offset > maxAllowedDelayedTimeOffset {
|
||||
if offset > maxAllowedNegativeTimeOffset {
|
||||
return nil
|
||||
}
|
||||
|
||||
// if the offset is greater than 15 seconds, we should restart
|
||||
logger.Panicf("max exchange server timestamp offset %d > %d seconds", offset, maxAllowedDelayedTimeOffset)
|
||||
logger.Panicf("max exchange server timestamp offset %d is less than the negative offset %d", offset, maxAllowedNegativeTimeOffset)
|
||||
}
|
||||
|
||||
atomic.StoreInt64(&globalServerTimestamp, serverTs)
|
||||
|
|
Loading…
Reference in New Issue
Block a user