Skip to content

Commit a8de04e

Browse files
authored
install 1_per_run.py (#275)
* install 1_per_run.py * remove extra output * trigger new build
1 parent edf228f commit a8de04e

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

Framework/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ install(FILES example-default.json
353353
DESTINATION etc)
354354

355355
install(PROGRAMS script/RepoCleaner/1_per_hour.py script/RepoCleaner/Ccdb.py script/RepoCleaner/skip.py
356-
script/RepoCleaner/repoCleaner.py
356+
script/RepoCleaner/repoCleaner.py script/RepoCleaner/1_per_run.py
357357
script/o2-qc-database-setup.sh
358358
DESTINATION bin)
359359

Framework/script/RepoCleaner/1_per_run.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,8 @@ def process(ccdb: Ccdb, object_path: str, delay: int):
3535

3636
# Find all the runs and group the versions
3737
for v in versions:
38-
print(f"Processing {v}")
39-
38+
logging.debug(f"Processing {v}")
4039
if "Run" in v.metadata:
41-
print(f"Run : {v.metadata['Run']}")
4240
runs_dict[v.metadata['Run']].append(v)
4341

4442
logging.debug(f"Number of runs : {len(runs_dict)}")

0 commit comments

Comments
 (0)