From 4643e50bd34dac0a7dc1802e68bdd16df68a8caa Mon Sep 17 00:00:00 2001 From: CrazyMax <1951866+crazy-max@users.noreply.github.com> Date: Wed, 11 Mar 2026 16:24:54 +0100 Subject: [PATCH] history: deduplicate node clients during export Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com> --- commands/history/export.go | 1 + 1 file changed, 1 insertion(+) diff --git a/commands/history/export.go b/commands/history/export.go index e313fdf626f2..35114450d2de 100644 --- a/commands/history/export.go +++ b/commands/history/export.go @@ -102,6 +102,7 @@ func runExport(ctx context.Context, dockerCli command.Cli, opts exportOptions) e if err != nil { return err } + visited[rec.node] = struct{}{} clients = append(clients, c) }