Skip to content

Commit

Permalink
Fix: TM service should be set to nil if not found. (#496)
Browse files Browse the repository at this point in the history
  • Loading branch information
regadas authored Oct 21, 2022
1 parent 818b5f9 commit 6a004ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/flinkcluster/flinkcluster_observer.go
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ func (observer *ClusterStateObserver) observeTaskManagerService(
if client.IgnoreNotFound(err) != nil {
return err
}
observed.jmService = nil
observed.tmService = nil
}
return nil
}
Expand Down

0 comments on commit 6a004ef

Please sign in to comment.