Skip to content

Commit

Permalink
fix(notebook-controller): fix typo (kubeflow#7305)
Browse files Browse the repository at this point in the history
namesace -> namespace in file components/notebook-controller/controllers/notebook_controller.go
  • Loading branch information
LiaoSirui authored Oct 26, 2023
1 parent 3657452 commit 53ffd03
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ func (r *NotebookReconciler) Reconcile(ctx context.Context, req ctrl.Request) (c
foundPod := &corev1.Pod{}
err = r.Get(ctx, types.NamespacedName{Name: ss.Name + "-0", Namespace: ss.Namespace}, foundPod)
if err != nil && apierrs.IsNotFound(err) {
log.Info(fmt.Sprintf("No Pods are currently running for Notebook Server: %s in namesace: %s.", instance.Name, instance.Namespace))
log.Info(fmt.Sprintf("No Pods are currently running for Notebook Server: %s in namespace: %s.", instance.Name, instance.Namespace))
} else if err != nil {
return ctrl.Result{}, err
}
Expand Down

0 comments on commit 53ffd03

Please sign in to comment.