From f5ae7ae8caf4a01283e59deb64011be317e7434b Mon Sep 17 00:00:00 2001 From: dj-smart Date: Fri, 2 Feb 2024 09:03:07 +0000 Subject: [PATCH] Print Sandbox URL for better debugging --- src/main/scripts/run_e2e_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/scripts/run_e2e_test.py b/src/main/scripts/run_e2e_test.py index c2d5c1136..9dbb610f5 100644 --- a/src/main/scripts/run_e2e_test.py +++ b/src/main/scripts/run_e2e_test.py @@ -43,8 +43,8 @@ def run_shell_command(cmd): args=parser.parse_args() # Start CDAP sandbox -print("Downloading CDAP sandbox") sandbox_url = "https://github.com/cdapio/cdap-build/releases/download/latest/cdap-sandbox-6.11.0-SNAPSHOT.zip" +print("Downloading CDAP sandbox from",sandbox_url) sandbox_dir = sandbox_url.split("/")[-1].split(".zip")[0] r = requests.get(sandbox_url) z = zipfile.ZipFile(io.BytesIO(r.content))