From f3428f3868a106f98c3d40252066fa69c9c83fdf Mon Sep 17 00:00:00 2001 From: Mariano Ntrougkas <44480600+marios1861@users.noreply.github.com> Date: Mon, 27 Oct 2025 21:08:58 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(client):=20reconnect=20if=20?= =?UTF-8?q?initial=20attempt=20failed=20for=20any=20reason?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- weed/worker/client.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/weed/worker/client.go b/weed/worker/client.go index 0e1e11270..73e7347a8 100644 --- a/weed/worker/client.go +++ b/weed/worker/client.go @@ -111,6 +111,8 @@ func (c *GrpcAdminClient) connectionProcess() { if err != nil { glog.Warningf("Initial connection failed: %v", err) c.comms.connectionEvents <- connectionEvent{connected: false, err: err} + c.comms.streamErrors <- err + c.comms.streamErrors <- err } else { c.comms.connectionEvents <- connectionEvent{connected: true} }