aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTodd Malsbary <todd.malsbary@intel.com>2020-10-20 15:36:16 -0700
committerTodd Malsbary <todd.malsbary@intel.com>2020-10-30 16:35:09 -0700
commit4b5ff54ff828deacb0145e8753c12abf1d9c92ba (patch)
treef5db489d954abfb26e6fad1805c8a8cab42bf620
parent0c352ef0d74d4b51a0fce5123b34a6753e8ab6a4 (diff)
Ignore 404 when deleting non-existent project in emco.sh
The delete is run at the start of the test, it is expected that the resource does not exist. Issue-ID: MULTICLOUD-1243 Signed-off-by: Todd Malsbary <todd.malsbary@intel.com> Change-Id: I1b060ec8f17fd4b9b76ed03d8dc3bd7c21756690
-rwxr-xr-xkud/tests/emco.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/kud/tests/emco.sh b/kud/tests/emco.sh
index 8b459b97..2b8eab1e 100755
--- a/kud/tests/emco.sh
+++ b/kud/tests/emco.sh
@@ -424,7 +424,7 @@ function deleteOrchestratorData {
delete_resource "${base_url_orchestrator}/projects/${projectname}/composite-apps/${collection_compositeapp_name}/${compositeapp_version}"
- delete_resource "${base_url_orchestrator}/projects/${projectname}"
+ delete_resource_nox "${base_url_orchestrator}/projects/${projectname}"
print_msg "deleteOrchestratorData done"
}