From f9af6f9c184a815cfcb6bca1a00bad5d07c36e32 Mon Sep 17 00:00:00 2001 From: LiaoSirui Date: Thu, 26 Oct 2023 09:46:10 -0500 Subject: [PATCH] fix(notebook-controller): fix typo (kubeflow/kubeflow#7305) namesace -> namespace in file components/notebook-controller/controllers/notebook_controller.go --- .../notebook-controller/controllers/notebook_controller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/notebook-controller/controllers/notebook_controller.go b/components/notebook-controller/controllers/notebook_controller.go index 0f11fb84..11f9262a 100644 --- a/components/notebook-controller/controllers/notebook_controller.go +++ b/components/notebook-controller/controllers/notebook_controller.go @@ -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 }