From 438358e4b350a08f3125e164e4d570277777a18a Mon Sep 17 00:00:00 2001 From: matst80 Date: Tue, 12 Nov 2024 21:40:59 +0100 Subject: [PATCH] builds --- synced-pool.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/synced-pool.go b/synced-pool.go index 95f0a5d..47a8d8d 100644 --- a/synced-pool.go +++ b/synced-pool.go @@ -396,7 +396,8 @@ func (p *SyncedPool) AddRemote(host string) error { } }() - return p.addRemoteHost(host, &remote) + go p.addRemoteHost(host, &remote) + return nil } func (p *SyncedPool) getGrain(id CartId) (Grain, error) {