From 0331e98957f67a10d0f2d4cc970b2125f769b7ba Mon Sep 17 00:00:00 2001 From: Patrick Ohly Date: Mon, 14 Aug 2023 12:59:49 +0200 Subject: [PATCH] scheduler_perf: fix installing DRA test driver multiple times The driver name configuration option was ignored, so a second driver would have used the same name. --- test/integration/scheduler_perf/dra_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/scheduler_perf/dra_test.go b/test/integration/scheduler_perf/dra_test.go index 0c4b82328da..938ca0a946a 100644 --- a/test/integration/scheduler_perf/dra_test.go +++ b/test/integration/scheduler_perf/dra_test.go @@ -210,7 +210,7 @@ func (op *createResourceDriverOp) run(ctx context.Context, tb testing.TB, client } } - controller := draapp.NewController(clientset, "test-driver.cdi.k8s.io", resources) + controller := draapp.NewController(clientset, op.DriverName, resources) ctx, cancel := context.WithCancel(ctx) var wg sync.WaitGroup wg.Add(1)