We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88dcd7b commit 0bbe000Copy full SHA for 0bbe000
lua/claudecode/server/tcp.lua
@@ -268,7 +268,10 @@ function M.start_ping_timer(server, interval)
268
-- This gives clients a fresh keepalive window since the time jump isn't their fault
269
require("claudecode.logger").debug(
270
"server",
271
- string.format("Detected potential wake from sleep (%.1fs elapsed), resetting client keepalive timers", elapsed / 1000)
+ string.format(
272
+ "Detected potential wake from sleep (%.1fs elapsed), resetting client keepalive timers",
273
+ elapsed / 1000
274
+ )
275
)
276
for _, client in pairs(server.clients) do
277
if client.state == "connected" then
0 commit comments