diff options
author | Aditya Sharoff <aditya.sharoff@intel.com> | 2020-09-09 16:22:32 -0700 |
---|---|---|
committer | Aditya Sharoff <aditya.sharoff@intel.com> | 2020-09-15 13:17:56 -0700 |
commit | 3bc5164b3ea166dd84a4c5f63ed95745100a324b (patch) | |
tree | 9e5fca611effd4ba1cbd18e957127ede9ac4dd06 /src/orchestrator/api/projecthandler.go | |
parent | dc33c5c9f8238f9c956357588b6fbe6217939a1e (diff) |
Delete issues error code 404 when project name is invalid
Issue-ID: MULTICLOUD-1147
Signed-off-by: Aditya Sharoff <aditya.sharoff@intel.com>
Change-Id: I659dfcb00b3f15bcf787ac3947f8755737b1fc39
Diffstat (limited to 'src/orchestrator/api/projecthandler.go')
-rw-r--r-- | src/orchestrator/api/projecthandler.go | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/orchestrator/api/projecthandler.go b/src/orchestrator/api/projecthandler.go index 07cd79ce..e88114a1 100644 --- a/src/orchestrator/api/projecthandler.go +++ b/src/orchestrator/api/projecthandler.go @@ -167,7 +167,13 @@ func (h projectHandler) deleteHandler(w http.ResponseWriter, r *http.Request) { vars := mux.Vars(r) name := vars["project-name"] - err := h.client.DeleteProject(name) + _, err := h.client.GetProject(name) + if err != nil { + http.Error(w, err.Error(), http.StatusNotFound) + return + } + + err = h.client.DeleteProject(name) if err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) return |