File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ def execute(self):
58
58
59
59
while self ._is_running :
60
60
while self ._is_running and not timeout .is_expired ():
61
- time .sleep (1 )
61
+ time .sleep (min ( 1 , self . _execution_interval ) )
62
62
self .execute_once ()
63
63
timeout .reset ()
64
64
Original file line number Diff line number Diff line change 1
- v 0.15.3
1
+ v 0.15.4
2
2
========
3
3
- ` Hl7WorklistParser ` :
4
4
- added support for HL7 v2.5.
7
7
v 0.15.1
8
8
========
9
9
- ` 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.
11
11
12
12
v 0.15.0
13
13
========
Original file line number Diff line number Diff line change 28
28
# For a discussion on single-sourcing the version across setup.py and the
29
29
# project code, see
30
30
# https://packaging.python.org/guides/single-sourcing-package-version/
31
- version = '0.15.3 ' , # Required
31
+ version = '0.15.4 ' , # Required
32
32
33
33
# This is a one-line description or tagline of what your project does. This
34
34
# corresponds to the "Summary" metadata field:
You can’t perform that action at this time.
0 commit comments