Hi Robert,
could you please add log on line #137 what type of check ID expired:
|
if (LocalDateTime.now().isAfter(check.getTargetts())) { |
|
|
|
//set expired flag but do not update the data object |
|
checkRepository.expire(check); |
with additional data like:
log.warn("{}.{} expired now: {} because it should end at: {} started at: {} ",
check.getTestid(), check.getCheckid(), LocalDateTime.now(), check.getTargetts(), check.getStartts());
Hi Robert,
could you please add log on line #137 what type of check ID expired:
impl_java/src/main/java/org/opentesting/services/execution/TestCheck.java
Lines 136 to 139 in 4bde6ce
with additional data like: