summaryrefslogtreecommitdiff
path: root/data.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2024-01-08 08:10:57 +0100
committerdefault <nobody@localhost>2024-01-08 08:10:57 +0100
commit93e7138e53628a76bed9583c5eb45ccf17b97e21 (patch)
treefe2b503c3843ec0c836b01821b0210e654a4de34 /data.c
parent22cb139d5b320a5c7701d89b7ff1f31d13c00931 (diff)
Rewritten part of the job threads to be leaner and faster.
Diffstat (limited to 'data.c')
-rw-r--r--data.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/data.c b/data.c
index ecddfc3..f2b4e0f 100644
--- a/data.c
+++ b/data.c
@@ -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);