diff --git a/src/main/scripts/run_e2e_test.py b/src/main/scripts/run_e2e_test.py index 47e778fdb..0e7ebaa72 100644 --- a/src/main/scripts/run_e2e_test.py +++ b/src/main/scripts/run_e2e_test.py @@ -42,7 +42,7 @@ def run_shell_command(cmd): # Start CDAP sandbox print("Downloading CDAP sandbox") -sandbox_url = "https://github.com/cdapio/cdap-build/releases/download/latest/cdap-sandbox-6.10.0-SNAPSHOT.zip" +sandbox_url = "https://github.com/cdapio/cdap-build/releases/download/latest/cdap-sandbox-6.11.0-SNAPSHOT.zip" sandbox_dir = sandbox_url.split("/")[-1].split(".zip")[0] r = requests.get(sandbox_url) z = zipfile.ZipFile(io.BytesIO(r.content)) diff --git a/src/main/scripts/run_e2e_test_module.py b/src/main/scripts/run_e2e_test_module.py index cdb1f621c..7bc07180c 100644 --- a/src/main/scripts/run_e2e_test_module.py +++ b/src/main/scripts/run_e2e_test_module.py @@ -29,7 +29,7 @@ def run_shell_command(cmd): if __name__ == "__main__": # Start CDAP sandbox print("Downloading CDAP sandbox") - sandbox_url = "https://github.com/cdapio/cdap-build/releases/download/latest/cdap-sandbox-6.10.0-SNAPSHOT.zip" + sandbox_url = "https://github.com/cdapio/cdap-build/releases/download/latest/cdap-sandbox-6.11.0-SNAPSHOT.zip" sandbox_dir = sandbox_url.split("/")[-1].split(".zip")[0] r = requests.get(sandbox_url) z = zipfile.ZipFile(io.BytesIO(r.content))