Skip to content

Commit

Permalink
Fix KafkaCluster, broken from rebase with conflicts
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Edgar <[email protected]>
  • Loading branch information
MikeEdgar committed Oct 17, 2024
1 parent 256cc61 commit 430bec8
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,11 @@ public static KafkaCluster fromCursor(JsonObject cursor) {
return PaginatedKubeResource.fromCursor(cursor, KafkaCluster::fromId);
}

@Override
public JsonApiMeta metaFactory() {
return new Meta();
}

public void reconciliationPaused(Boolean reconciliationPaused) {
((Meta) getOrCreateMeta()).reconciliationPaused = reconciliationPaused;
}
Expand Down

0 comments on commit 430bec8

Please sign in to comment.