Skip to content

Commit

Permalink
HHH-17975: use the same precision (millis) for resolving revision tim…
Browse files Browse the repository at this point in the history
…estamps from Instant as from LocalDateTime
  • Loading branch information
fheck authored and beikov committed Apr 19, 2024
1 parent 034b42f commit ac49021
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ else if ( timestampData.isInstant() ) {
return instant;
}
else {
return instant.getEpochSecond();
return instant.toEpochMilli();
}
}
return null;
Expand Down

0 comments on commit ac49021

Please sign in to comment.