Skip to content

Commit

Permalink
fix snapshot version
Browse files Browse the repository at this point in the history
  • Loading branch information
itsankit-google committed Sep 18, 2024
1 parent 6cb9515 commit 9cf7558
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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.3.1</version>
<version>0.3.2</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 @@ -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/v6.10.1-SNAPSHOT/cdap-sandbox-6.10.1-SNAPSHOT.zip"
sandbox_url = "https://github.com/cdapio/cdap-build/releases/download/v6.10.2/cdap-sandbox-6.10.2.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/v6.10.0-SNAPSHOT/cdap-sandbox-6.10.0-SNAPSHOT.zip"
sandbox_url = "https://github.com/cdapio/cdap-build/releases/download/v6.10.2/cdap-sandbox-6.10.2.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 9cf7558

Please sign in to comment.