1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-24 15:59:41 +02:00

add wiggle room back to edge endpoint (#5739)

This commit is contained in:
Richard Wei 2021-09-27 20:33:46 +13:00 committed by GitHub
parent 7437006359
commit f0a88b7367
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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() {