From bb1dcef9919d7dba43b2eb9672760d985b1552cf Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Thu, 4 May 2023 09:55:00 +0200 Subject: [PATCH] Engine - `makeRequest(Request)` now cleans up by removing the adhoc `Queue` it registered in the beginning ofd the process --- source/tasky/engine.d | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/tasky/engine.d b/source/tasky/engine.d index fad2a10..2558474 100644 --- a/source/tasky/engine.d +++ b/source/tasky/engine.d @@ -40,5 +40,8 @@ public class Engine /* Run the response handler with the response */ req.process(resp); + + /* De-register the queue */ + tManager.releaseQueue(newQueue); } } \ No newline at end of file