1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-24 06:28:42 +01:00

feat: updates agents to be more resilient by reconnecting. also adds big performance issues in swarm mode with little updates to the UI. (#3145)

This commit is contained in:
Amir Raminfar
2024-07-25 08:01:33 -07:00
committed by GitHub
parent c87a7b1272
commit 3a988b8fdc
29 changed files with 560 additions and 241 deletions

View File

@@ -130,7 +130,8 @@ func init() {
Stats: utils.NewRingBuffer[docker.ContainerStat](300),
}, nil)
go RunServer(client, certs, lis)
server := NewServer(client, certs, "test")
go server.Serve(lis)
}
func bufDialer(ctx context.Context, address string) (net.Conn, error) {