0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-18 01:48:27 +02:00

modules/s_fetch: Clear all requests on unload.

This commit is contained in:
Jason Volk 2019-04-12 11:34:38 -07:00
parent 541dbadf2f
commit 40bc440133

View file

@ -74,6 +74,11 @@ ircd::m::fetch::fini()
eval_context.terminate();
request_context.join();
eval_context.join();
requests.clear();
complete.clear();
assert(requests.empty());
assert(complete.empty());
}
//