Skip to content

Commit

Permalink
#120 Added delay after uploading SLC to SaaS
Browse files Browse the repository at this point in the history
  • Loading branch information
ahsimb committed Jun 28, 2024
1 parent 0dff53f commit 94c4485
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/ci_tests/utils/build_language_container.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import time

import pyexasol
import subprocess
from pathlib import Path
Expand Down Expand Up @@ -45,7 +47,6 @@ def build_language_container() -> Path:

def upload_language_container(db_conn: pyexasol.ExaConnection,
bucketfs_location: bfs.path.PathLike) -> None:

container_path = build_language_container()

deployer = LanguageContainerDeployer(pyexasol_connection=db_conn,
Expand Down Expand Up @@ -84,3 +85,5 @@ def upload_language_container_saas(db_conn: pyexasol.ExaConnection,
pat=saas_token)

upload_language_container(db_conn, bucketfs_location)

time.sleep(180)

0 comments on commit 94c4485

Please sign in to comment.