diff --git a/Docker/Dockerfile b/Docker/Dockerfile index 33bc3f58..5e5a4edf 100644 --- a/Docker/Dockerfile +++ b/Docker/Dockerfile @@ -2,7 +2,7 @@ FROM oraclelinux:8 LABEL author="OPERA ADT" \ description="RTC cal/val release R4" \ - version="1.0.2-final" + version="1.0.3-final" RUN yum -y update &&\ yum -y install curl &&\ diff --git a/build_docker_image.sh b/build_docker_image.sh index 4f957468..5f749d64 100755 --- a/build_docker_image.sh +++ b/build_docker_image.sh @@ -2,7 +2,7 @@ REPO=opera IMAGE=rtc -TAG=final_1.0.2 +TAG=final_1.0.3 echo "IMAGE is $REPO/$IMAGE:$TAG" diff --git a/src/rtc/rtc_s1.py b/src/rtc/rtc_s1.py index 3a045b96..1714146e 100755 --- a/src/rtc/rtc_s1.py +++ b/src/rtc/rtc_s1.py @@ -620,12 +620,6 @@ def run_parallel(cfg: RunConfig, logfile_path, flag_logger_full_format): f'"{burst_runconfig_list[index_child]}" for burst ID ' f'"{burst_id}"\n') - # if output directory is empty, delete it - if (os.path.isdir(output_dir) and - len(os.listdir(output_dir)) == 0): - logger.info(f'Removing output directory: {output_dir}') - os.rmdir(output_dir) - raise RuntimeError(msg_failed_child_proc) lookside = None diff --git a/src/rtc/version.py b/src/rtc/version.py index e506e440..0c2831a5 100644 --- a/src/rtc/version.py +++ b/src/rtc/version.py @@ -1 +1 @@ -VERSION='1.0.2' +VERSION='1.0.3'