From 5709f76b70210fa16b88aefe5ea0dd9c12ceea08 Mon Sep 17 00:00:00 2001 From: Martin Date: Mon, 12 Oct 2020 01:21:21 +0200 Subject: [PATCH] Actually add dl thread (cherry picked from commit c6697518f07afc507c0455e1e3e8ff60b12505b1) --- urbackupserver/ServerDownloadThreadGroup.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/urbackupserver/ServerDownloadThreadGroup.cpp b/urbackupserver/ServerDownloadThreadGroup.cpp index 58369496..43a1295d 100644 --- a/urbackupserver/ServerDownloadThreadGroup.cpp +++ b/urbackupserver/ServerDownloadThreadGroup.cpp @@ -72,6 +72,8 @@ ServerDownloadThreadGroup::ServerDownloadThreadGroup(FileClient& fc, FileClientC sc_failure_fatal, i, filepath_corrections, max_file_id, active_dls_ids); tickets.push_back(Server->getThreadPool()->execute(dl_thread.dl_thread, "fbackup load" + convert(i))); + + dl_threads.push_back(dl_thread); } }