summaryrefslogtreecommitdiff
path: root/data.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2023-03-02 12:38:02 +0100
committerdefault <nobody@localhost>2023-03-02 12:38:02 +0100
commit5036cb5e1134d99c967f0de5057801a9b0af96d9 (patch)
treef2bb1aa9cd47ddce5d99c93ee3b518b76986a9e0 /data.c
parente705e5c3edafe34f1a05f23e97780d4f8acd219f (diff)
Connection jobs are treated as urgent.
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 4403bf4..71ebf68 100644
--- a/data.c
+++ b/data.c
@@ -1497,7 +1497,7 @@ void enqueue_output_raw(const char *keyid, const char *seckey,
/* if it's to be sent right now, bypass the disk queue and post the job */
if (retries == 0 && job_fifo_ready())
- job_post(qmsg);
+ job_post(qmsg, 0);
else {
qmsg = _enqueue_put(fn, qmsg);
srv_debug(1, xs_fmt("enqueue_output %s %s %d", inbox, fn, retries));