add wiggle room back to edge endpoint (#5739)

pull/5771/head
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
1 changed files with 1 additions and 1 deletions

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