aboutsummaryrefslogtreecommitdiffstats
path: root/src/k8splugin/api/handler.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/k8splugin/api/handler.go')
-rw-r--r--src/k8splugin/api/handler.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/k8splugin/api/handler.go b/src/k8splugin/api/handler.go
index 27d060aa..4635e7ba 100644
--- a/src/k8splugin/api/handler.go
+++ b/src/k8splugin/api/handler.go
@@ -120,7 +120,7 @@ func CreateHandler(w http.ResponseWriter, r *http.Request) {
// "{"deployment":<>,"service":<>}"
out, err := json.Marshal(resourceNameMap)
if err != nil {
- werr := pkgerrors.Wrap(err, "Create VNF deployment error")
+ werr := pkgerrors.Wrap(err, "Create VNF deployment JSON Marshalling error")
http.Error(w, werr.Error(), http.StatusInternalServerError)
return
}
@@ -130,7 +130,7 @@ func CreateHandler(w http.ResponseWriter, r *http.Request) {
// value: "{"deployment":<>,"service":<>}"
err = db.DBconn.CreateEntry(internalVNFID, serializedResourceNameMap)
if err != nil {
- werr := pkgerrors.Wrap(err, "Create VNF deployment error")
+ werr := pkgerrors.Wrap(err, "Create VNF deployment DB error")
http.Error(w, werr.Error(), http.StatusInternalServerError)
return
}