Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import org.springframework.data.annotation.Transient;
import org.springframework.data.mongodb.core.mapping.Document;

import java.io.Serial;
import java.io.Serializable;

@Getter
Expand All @@ -21,11 +20,6 @@
@FieldNameConstants
public class Tenant extends BaseDomain implements Serializable {

// When changing tenant object, update the serialization version number to ensure that in a multi pod
// deployment, new pods only read the new tenant object and not the old one from redis cache.
@Serial
private static final long serialVersionUID = 1459916000401322518L;

@Unique String slug;

String displayName;
Expand Down
Loading