Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix NPE #62

Merged
merged 1 commit into from
Mar 13, 2024
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 @@ -316,7 +316,7 @@ private static boolean isReady(DynamicKubernetesObject obj) {
// Whether status has diverged from spec (i.e. we need to re-plan the pipeline)
private static boolean diverged(V1alpha1SubscriptionSpec spec, V1alpha1SubscriptionStatus status) {
return status.getSql() == null || !status.getSql().equals(spec.getSql())
|| !status.getHints().equals(spec.getHints());
|| status.getHints() == null || !status.getHints().equals(spec.getHints());
}

// Fetch attributes from downstream controllers
Expand Down
Loading