diff options
author | Todd Malsbary <todd.malsbary@intel.com> | 2020-10-20 15:36:16 -0700 |
---|---|---|
committer | Todd Malsbary <todd.malsbary@intel.com> | 2020-10-30 16:35:09 -0700 |
commit | 4b5ff54ff828deacb0145e8753c12abf1d9c92ba (patch) | |
tree | f5db489d954abfb26e6fad1805c8a8cab42bf620 /kud/tests/emco.sh | |
parent | 0c352ef0d74d4b51a0fce5123b34a6753e8ab6a4 (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
Diffstat (limited to 'kud/tests/emco.sh')
-rwxr-xr-x | kud/tests/emco.sh | 2 |
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" } |