diff options
| author | 2023-02-06 20:29:18 +0100 | |
|---|---|---|
| committer | 2023-02-06 20:29:18 +0100 | |
| commit | f6d51357afcb047a0804600a19694944f64e82bc (patch) | |
| tree | b1679d9557e1b36a309fdf50dfb178900473f0d4 /activitypub.c | |
| parent | The pool of threads now process q_items. (diff) | |
| download | snac2-f6d51357afcb047a0804600a19694944f64e82bc.tar.gz snac2-f6d51357afcb047a0804600a19694944f64e82bc.tar.xz snac2-f6d51357afcb047a0804600a19694944f64e82bc.zip | |
process_queue() now posts the q_item to the thread pool.
Instead of calling process_queue_item() itself.
Diffstat (limited to 'activitypub.c')
| -rw-r--r-- | activitypub.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activitypub.c b/activitypub.c index 5aae251..651c18c 100644 --- a/activitypub.c +++ b/activitypub.c | |||
| @@ -1215,7 +1215,7 @@ void process_queue(void) | |||
| 1215 | continue; | 1215 | continue; |
| 1216 | } | 1216 | } |
| 1217 | 1217 | ||
| 1218 | process_queue_item(q_item); | 1218 | job_post(q_item); |
| 1219 | } | 1219 | } |
| 1220 | } | 1220 | } |
| 1221 | 1221 | ||