@@ -128,7 +128,7 @@ func (r *TensorFusionConnectionReconciler) Reconcile(ctx context.Context, req ct
128128 }
129129 // TODO: Handle PodFailure
130130
131- if err := r .MustUpdateStatus (ctx , connection , gpu ); err != nil {
131+ if err := r .mustUpdateStatus (ctx , connection , gpu ); err != nil {
132132 return ctrl.Result {}, err
133133 }
134134
@@ -180,7 +180,7 @@ func (r *TensorFusionConnectionReconciler) handleDeletion(ctx context.Context, c
180180 return err
181181 }
182182
183- return r .MustUpdateStatus (ctx , connection , gpu )
183+ return r .mustUpdateStatus (ctx , connection , gpu )
184184}
185185
186186// Helper functions to handle finalizers
@@ -203,7 +203,7 @@ func removeString(slice []string, s string) []string {
203203 return result
204204}
205205
206- func (r * TensorFusionConnectionReconciler ) MustUpdateStatus (ctx context.Context , connection * tfv1.TensorFusionConnection , gpu * tfv1.GPU ) error {
206+ func (r * TensorFusionConnectionReconciler ) mustUpdateStatus (ctx context.Context , connection * tfv1.TensorFusionConnection , gpu * tfv1.GPU ) error {
207207 return retry .RetryOnConflict (retry .DefaultBackoff , func () error {
208208 // Get the latest version of the connection
209209 latestConnection := & tfv1.TensorFusionConnection {}
0 commit comments