diff options
| author | Stefan Boberg <[email protected]> | 2026-03-16 10:56:58 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2026-03-16 10:56:58 +0100 |
| commit | 7079dcf0d77f1ff4cfe66f87f21710068223a8d0 (patch) | |
| tree | 69f4b4ffea7da9b02e5cbf23b74c19558027007e /src/zenhttp/servers/httpsys.cpp | |
| parent | Fix thread vector growth in dynamic thread pools (diff) | |
| parent | Enable cross compilation of Windows targets on Linux (#839) (diff) | |
| download | zen-7079dcf0d77f1ff4cfe66f87f21710068223a8d0.tar.xz zen-7079dcf0d77f1ff4cfe66f87f21710068223a8d0.zip | |
Merge branch 'main' into sb/threadpool
Diffstat (limited to 'src/zenhttp/servers/httpsys.cpp')
| -rw-r--r-- | src/zenhttp/servers/httpsys.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zenhttp/servers/httpsys.cpp b/src/zenhttp/servers/httpsys.cpp index eaf080960..2074fbd79 100644 --- a/src/zenhttp/servers/httpsys.cpp +++ b/src/zenhttp/servers/httpsys.cpp @@ -1176,7 +1176,7 @@ HttpSysServer::RegisterHttpUrls(int BasePort) { Result = HttpAddUrlToUrlGroup(m_HttpUrlGroupId, WildcardUrlPath.c_str(), HTTP_URL_CONTEXT(0), 0); - if ((Result == ERROR_SHARING_VIOLATION)) + if (Result == ERROR_SHARING_VIOLATION) { ZEN_INFO("Desired port {} is in use (HttpAddUrlToUrlGroup returned: {}), retrying", EffectivePort, |