Skip to content

Commit f72ceab

Browse files
author
Florian Perucki
committed
Fixed OverflowError when returning job IDs
1 parent 3866ad3 commit f72ceab

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

mrq/bin/mrq_run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def main():
5858
job.datestarted = datetime.datetime.utcnow()
5959
set_current_job(job)
6060
ret = job.perform()
61-
print json.dumps(ret) # pylint: disable=no-member
61+
print ret
6262

6363
# This shouldn't be needed as the process will exit and close any remaining sockets
6464
# connections.redis.connection_pool.disconnect()

0 commit comments

Comments
 (0)