aboutsummaryrefslogtreecommitdiff
path: root/src/zencompute/httporchestrator.cpp
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2026-04-13 19:17:09 +0200
committerGitHub Enterprise <[email protected]>2026-04-13 19:17:09 +0200
commit3d59b5d7036c35fe484d052ff32dbdc9d0a75cf7 (patch)
tree8d24babc8cd3d097800af0bd960c7ba1d72927d7 /src/zencompute/httporchestrator.cpp
parentuse mimalloc by default (#952) (diff)
downloadzen-3d59b5d7036c35fe484d052ff32dbdc9d0a75cf7.tar.xz
zen-3d59b5d7036c35fe484d052ff32dbdc9d0a75cf7.zip
fix utf characters in source code (#953)
Diffstat (limited to 'src/zencompute/httporchestrator.cpp')
-rw-r--r--src/zencompute/httporchestrator.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zencompute/httporchestrator.cpp b/src/zencompute/httporchestrator.cpp
index 1f51e560e..56eadcd57 100644
--- a/src/zencompute/httporchestrator.cpp
+++ b/src/zencompute/httporchestrator.cpp
@@ -478,7 +478,7 @@ HttpOrchestratorService::Shutdown()
m_PushThread.join();
}
- // Clean up worker WebSocket connections — collect IDs under lock, then
+ // Clean up worker WebSocket connections - collect IDs under lock, then
// notify the service outside the lock to avoid lock-order inversions.
std::vector<std::string> WorkerIds;
m_WorkerWsLock.WithExclusiveLock([&] {
@@ -582,7 +582,7 @@ std::string
HttpOrchestratorService::HandleWorkerWebSocketMessage(const WebSocketMessage& Msg)
{
// Workers send CbObject in native binary format over the WebSocket to
- // avoid the lossy CbObject↔JSON round-trip.
+ // avoid the lossy CbObject<->JSON round-trip.
CbObject Data = CbObject::MakeView(Msg.Payload.GetData());
if (!Data)
{