Skip to content

Commit

Permalink
exp
Browse files Browse the repository at this point in the history
  • Loading branch information
morsecodist committed Jul 1, 2024
1 parent 20e5630 commit 5c80653
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/idseq_utils/idseq_utils/batch_run_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
from botocore.config import Config

log = logging.getLogger(__name__)
log.setLevel(logging.DEBUG)

MAX_CHUNKS_IN_FLIGHT = 30 # TODO: remove this constant, currently does nothing since we have at most 30 index chunks

Expand Down Expand Up @@ -324,6 +325,7 @@ def run_alignment(
for fn in listdir("chunks"):
if fn.endswith("json"):
os.remove(os.path.join("chunks", fn))
log.debug(f"deleting from S3: {os.path.join(chunk_dir, fn)} ({chunk_dir}, {fn})")
_s3_client.put_object_tagging(
Bucket=bucket,
Key=os.path.join(chunk_dir, fn),
Expand Down

0 comments on commit 5c80653

Please sign in to comment.