Skip to content

Commit

Permalink
Merge pull request #245 from cdapio/Fix-CDAP-Sandbox-version
Browse files Browse the repository at this point in the history
Fix CDAP Sandbox version for release 6.9
  • Loading branch information
dj-smart authored Feb 1, 2024
2 parents 07fd4bd + 9549b29 commit 727f0d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ the License.-->
<modelVersion>4.0.0</modelVersion>
<groupId>io.cdap.tests.e2e</groupId>
<artifactId>cdap-e2e-framework</artifactId>
<version>0.2.3-SNAPSHOT</version>
<version>0.2.3</version>

<name>CDAP e2e Framework</name>
<description>Framework for CDAP e2e Tests</description>
Expand Down
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 @@ -40,7 +40,7 @@ def run_shell_command(cmd):

# Start CDAP sandbox
print("Downloading CDAP sandbox")
sandbox_url = "https://github.com/cdapio/cdap-build/releases/download/v6.9.1-SNAPSHOT/cdap-sandbox-6.9.1-SNAPSHOT.zip"
sandbox_url = "https://github.com/cdapio/cdap-build/releases/download/v6.9.4/cdap-sandbox-6.9.4.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 727f0d4

Please sign in to comment.