Skip to content

Commit

Permalink
fix: ChecksumServiceCasesIT test case failure
Browse files Browse the repository at this point in the history
  • Loading branch information
AssahBismarkabah committed Jan 7, 2025
1 parent 712ca81 commit 22bead6
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ public void doImport(RealmImport realmImport) {
customAttributes = new HashMap<>();
existingRealm.setAttributes(customAttributes);
}
Boolean existingEventsEnabled = existingRealm.isEventsEnabled();
if (existingEventsEnabled == null) {
existingRealm.setEventsEnabled(false);
}

String importChecksum = realmImport.getChecksum();
String attributeKey = getCustomAttributeKey(realmImport);
Expand Down

0 comments on commit 22bead6

Please sign in to comment.