We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11a1156 commit 5c01b44Copy full SHA for 5c01b44
1 file changed
src/jrd/svc.cpp
@@ -1946,11 +1946,13 @@ THREAD_ENTRY_DECLARE Service::run(THREAD_ENTRY_PARAM arg)
1946
RefPtr<SvcMutex> ref(svc->svc_existence);
1947
exit_code = svc->svc_service_run->serv_thd(svc);
1948
1949
+ Thread svcThread(std::move(svc->svc_thread));
1950
+
1951
svc->started();
1952
svc->unblockQueryGet();
1953
svc->finish(SVC_finished);
1954
- threadCollect->ending(std::move(svc->svc_thread));
1955
+ threadCollect->ending(std::move(svcThread));
1956
}
1957
catch (const Exception& ex)
1958
{
0 commit comments