Skip to content

Commit

Permalink
Merge pull request cdapio#224 from cdapio/update-sandbox-url
Browse files Browse the repository at this point in the history
update sandbox url
  • Loading branch information
itsankit-google authored Oct 31, 2023
2 parents 361a2e1 + 68cfff7 commit f12721c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/scripts/run_e2e_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion src/main/scripts/run_e2e_test_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit f12721c

Please sign in to comment.