chore(release): 0.7.0-dev.1 #16

Merged
pufereq merged 7 commits from release/0.7.0-dev.1 into main 2026-03-08 19:46:56 +00:00
3 changed files with 38 additions and 2 deletions
Showing only changes of commit 6ed03ab74d - Show all commits

View File

@@ -6,6 +6,7 @@ from __future__ import annotations
import logging as lg
import socket
import time
from typing import Any
from judas_server.backend.client_status import ClientStatus
@@ -41,6 +42,8 @@ class Client:
self.inbound: bytes = b""
self.outbound: bytes = b""
self.initial_telemetry: dict[str, Any] | None = None
def __str__(self) -> str:
if self.addr:
return f"Client({self.id} ({self.addr[0]}:{self.addr[1]}))"