KEYCLOAK-12736 Set time for admin events in milliseconds, instead of converted seconds
This commit is contained in:
parent
c821dcf820
commit
a3e5f9d547
1 changed files with 1 additions and 1 deletions
|
@ -240,7 +240,7 @@ public class AdminEventBuilder {
|
|||
if(realm.isAdminEventsDetailsEnabled()) {
|
||||
includeRepresentation = true;
|
||||
}
|
||||
adminEvent.setTime(Time.toMillis(Time.currentTime()));
|
||||
adminEvent.setTime(Time.currentTimeMillis());
|
||||
|
||||
if (store != null) {
|
||||
try {
|
||||
|
|
Loading…
Reference in a new issue