From 2cea0519046ee7425f33c80fc7e869503d17f5db Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Tue, 23 Sep 2025 10:53:55 +0000 Subject: [PATCH] Please consider the following formatting changes --- Framework/Core/src/HTTPParser.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Framework/Core/src/HTTPParser.cxx b/Framework/Core/src/HTTPParser.cxx index 93b48e6ebc800..6b0de8939d29c 100644 --- a/Framework/Core/src/HTTPParser.cxx +++ b/Framework/Core/src/HTTPParser.cxx @@ -221,7 +221,7 @@ std::string encode_websocket_handshake_reply(char const* nonce, char const* prot "Upgrade: websocket\r\n" "Connection: Upgrade\r\n" "Access-Control-Allow-Origin: \"*\"\r\n" - "{}" + "{}" "Sec-WebSocket-Accept: {}\r\n\r\n"; return fmt::format(res, protocol && protocol[0] ? fmt::format("Sec-WebSocket-Protocol: {}\r\n", protocol) : "", HTTPParserHelpers::calculateAccept(nonce)); }