diff options
| author | Dan Engelbrecht <[email protected]> | 2025-08-20 15:57:48 +0200 |
|---|---|---|
| committer | Dan Engelbrecht <[email protected]> | 2025-08-20 15:57:48 +0200 |
| commit | 5c7b75a0a062e74f45cd73ce6b7a93b05c0a0fac (patch) | |
| tree | 1c737443e1724136abee4e7e851f00276f46d921 /src/zenhttp/servers/httpsys.cpp | |
| parent | per namespace/project cas prep refactor (#470) (diff) | |
| download | zen-5c7b75a0a062e74f45cd73ce6b7a93b05c0a0fac.tar.xz zen-5c7b75a0a062e74f45cd73ce6b7a93b05c0a0fac.zip | |
make sure we properly shut down any pending http requests at exit
Diffstat (limited to 'src/zenhttp/servers/httpsys.cpp')
| -rw-r--r-- | src/zenhttp/servers/httpsys.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/zenhttp/servers/httpsys.cpp b/src/zenhttp/servers/httpsys.cpp index 62dab02c4..18083e1aa 100644 --- a/src/zenhttp/servers/httpsys.cpp +++ b/src/zenhttp/servers/httpsys.cpp @@ -1224,6 +1224,7 @@ HttpSysServer::Cleanup() if (m_RequestQueueHandle) { + HttpShutdownRequestQueue(m_RequestQueueHandle); HttpCloseRequestQueue(m_RequestQueueHandle); m_RequestQueueHandle = nullptr; } |