mirror of
https://github.com/portainer/portainer.git
synced 2025-07-27 09:19:39 +02:00
add wiggle room back to edge endpoint (#5739)
This commit is contained in:
parent
7437006359
commit
f0a88b7367
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ class EndpointItemController {
|
||||||
const checkInInterval = this.model.EdgeCheckinInterval;
|
const checkInInterval = this.model.EdgeCheckinInterval;
|
||||||
|
|
||||||
// give checkIn some wiggle room
|
// give checkIn some wiggle room
|
||||||
return this.endpointInitTime - this.model.LastCheckInDate <= checkInInterval * 2;
|
return this.endpointInitTime - this.model.LastCheckInDate <= checkInInterval * 2 + 20;
|
||||||
}
|
}
|
||||||
|
|
||||||
$onInit() {
|
$onInit() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue