Skip to content

Commit

Permalink
Merge pull request cdapio#247 from cdapio/improve-debugging
Browse files Browse the repository at this point in the history
Print Sandbox URL for Better Debugging
  • Loading branch information
dj-smart authored Feb 2, 2024
2 parents 73d2049 + f5ae7ae commit c6c91d8
Showing 1 changed file with 1 addition and 1 deletion.
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 @@ -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))
Expand Down

0 comments on commit c6c91d8

Please sign in to comment.