diff options
author | default <nobody@localhost> | 2024-01-08 08:10:57 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2024-01-08 08:10:57 +0100 |
commit | 93e7138e53628a76bed9583c5eb45ccf17b97e21 (patch) | |
tree | fe2b503c3843ec0c836b01821b0210e654a4de34 /data.c | |
parent | 22cb139d5b320a5c7701d89b7ff1f31d13c00931 (diff) |
Rewritten part of the job threads to be leaner and faster.
Diffstat (limited to 'data.c')
-rw-r--r-- | data.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2168,7 +2168,7 @@ void enqueue_output_raw(const char *keyid, const char *seckey, qmsg = xs_dict_append(qmsg, "seckey", seckey); /* if it's to be sent right now, bypass the disk queue and post the job */ - if (retries == 0 && job_fifo_ready()) + if (retries == 0) job_post(qmsg, 0); else { qmsg = _enqueue_put(fn, qmsg); |