Skip to content

Commit fb9f048

Browse files
committed
fix
1 parent c3a6116 commit fb9f048

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Diff for: orthanc_tools/helpers/old_files_deleter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def execute(self):
5858

5959
while self._is_running:
6060
while self._is_running and not timeout.is_expired():
61-
time.sleep(1)
61+
time.sleep(min(1, self._execution_interval))
6262
self.execute_once()
6363
timeout.reset()
6464

Diff for: release-notes.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
v 0.15.3
1+
v 0.15.4
22
========
33
- `Hl7WorklistParser`:
44
- added support for HL7 v2.5.
@@ -7,7 +7,7 @@ v 0.15.3
77
v 0.15.1
88
========
99
- `OrthancTestDbPopulator`: `instances_count` is now applied to every generated series
10-
and not only MR & CT series.
10+
and not only to MR & CT series.
1111

1212
v 0.15.0
1313
========

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
# For a discussion on single-sourcing the version across setup.py and the
2929
# project code, see
3030
# https://packaging.python.org/guides/single-sourcing-package-version/
31-
version='0.15.3', # Required
31+
version='0.15.4', # Required
3232

3333
# This is a one-line description or tagline of what your project does. This
3434
# corresponds to the "Summary" metadata field:

0 commit comments

Comments
 (0)