From 943e5b5b539c8efa8c4886cb28be4135bdfcc747 Mon Sep 17 00:00:00 2001 From: Sergey Smolnikov Date: Tue, 17 Oct 2023 13:32:08 +0200 Subject: [PATCH] Update api/jobs/job_controller.go Co-authored-by: Fredrik Hatletvedt <32248439+Pespiri@users.noreply.github.com> --- api/jobs/job_controller.go | 1 - 1 file changed, 1 deletion(-) diff --git a/api/jobs/job_controller.go b/api/jobs/job_controller.go index 8ce05eb0..d285beae 100644 --- a/api/jobs/job_controller.go +++ b/api/jobs/job_controller.go @@ -223,7 +223,6 @@ func StopApplicationJob(accounts models.Accounts, w http.ResponseWriter, r *http appName := mux.Vars(r)["appName"] jobName := mux.Vars(r)["jobName"] - log.Infof("Stop the pipeline job %s in the application %s", jobName, appName) handler := Init(accounts, deployments.Init(accounts)) err := handler.StopJob(r.Context(), appName, jobName)