mirror of https://github.com/portainer/portainer
add wiggle room back to edge endpoint (#5739)
parent
7437006359
commit
f0a88b7367
|
@ -37,7 +37,7 @@ class EndpointItemController {
|
|||
const checkInInterval = this.model.EdgeCheckinInterval;
|
||||
|
||||
// give checkIn some wiggle room
|
||||
return this.endpointInitTime - this.model.LastCheckInDate <= checkInInterval * 2;
|
||||
return this.endpointInitTime - this.model.LastCheckInDate <= checkInInterval * 2 + 20;
|
||||
}
|
||||
|
||||
$onInit() {
|
||||
|
|
Loading…
Reference in New Issue