Merge pull request #120339 from pohly/scheduler-perf-dra-driver-names

scheduler_perf: use different log names for different DRA drivers
This commit is contained in:
Kubernetes Prow Robot 2023-10-02 06:32:56 -07:00 committed by GitHub
commit 44cfd556b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -216,7 +216,7 @@ func (op *createResourceDriverOp) run(ctx context.Context, tb testing.TB, client
wg.Add(1)
go func() {
defer wg.Done()
ctx := klog.NewContext(ctx, klog.LoggerWithName(klog.FromContext(ctx), "DRA test driver"))
ctx := klog.NewContext(ctx, klog.LoggerWithName(klog.FromContext(ctx), op.DriverName))
controller.Run(ctx, 5 /* workers */)
}()
tb.Cleanup(func() {