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))