HHH-17975: use the same precision (millis) for resolving revision timestamps from Instant as from LocalDateTime
This commit is contained in:
parent
6aa573004f
commit
6bca5a4960
|
@ -100,7 +100,7 @@ public class RevisionTimestampValueResolver {
|
||||||
return instant;
|
return instant;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
return instant.getEpochSecond();
|
return instant.toEpochMilli();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
|
|
Loading…
Reference in New Issue