Skip to content

Commit 6ddd3d4

Browse files
author
Matt George
committed
Merge branch 'bug/worker_interval' into release/1.0.1
2 parents 69f82d2 + 933ed29 commit 6ddd3d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyres/scripts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def pyres_worker():
100100
setup_logging(log_level=log_level, filename=options.logfile)
101101
interval = options.interval
102102
if interval is not None:
103-
interval = float(interval)
103+
interval = int(interval)
104104

105105
queues = args[0].split(',')
106106
server = '%s:%s' % (options.host,options.port)

0 commit comments

Comments
 (0)