From c54897ad44032af97c42e95ab603f858e91ebf26 Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Tue, 21 Apr 2026 11:41:38 +0200 Subject: [PATCH] fix(tests): update InstallBackend call sites for new URI/Name/Alias params (#9467) Commit 02bb715c (#9446) added uri, name, alias parameters to RemoteUnloaderAdapter.InstallBackend but missed the e2e test call sites, breaking the distributed test build. Pass empty strings to match the pattern used by the other non-URI call sites. Assisted-by: Claude Code:claude-opus-4-7 Signed-off-by: Ettore Di Giacinto --- tests/e2e/distributed/node_lifecycle_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/e2e/distributed/node_lifecycle_test.go b/tests/e2e/distributed/node_lifecycle_test.go index 024b441db..9355eedf4 100644 --- a/tests/e2e/distributed/node_lifecycle_test.go +++ b/tests/e2e/distributed/node_lifecycle_test.go @@ -57,7 +57,7 @@ var _ = Describe("Node Backend Lifecycle (NATS-driven)", Label("Distributed"), f FlushNATS(infra.NC) adapter := nodes.NewRemoteUnloaderAdapter(registry, infra.NC) - installReply, err := adapter.InstallBackend(node.ID, "llama-cpp", "", "") + installReply, err := adapter.InstallBackend(node.ID, "llama-cpp", "", "", "", "", "") Expect(err).ToNot(HaveOccurred()) Expect(installReply.Success).To(BeTrue()) }) @@ -78,7 +78,7 @@ var _ = Describe("Node Backend Lifecycle (NATS-driven)", Label("Distributed"), f FlushNATS(infra.NC) adapter := nodes.NewRemoteUnloaderAdapter(registry, infra.NC) - installReply, err := adapter.InstallBackend(node.ID, "nonexistent", "", "") + installReply, err := adapter.InstallBackend(node.ID, "nonexistent", "", "", "", "", "") Expect(err).ToNot(HaveOccurred()) Expect(installReply.Success).To(BeFalse()) Expect(installReply.Error).To(ContainSubstring("backend not found"))