Skip to content

Commit 0e10ae2

Browse files
authored
fix(e2e): log instead of error when NICs not found in rx buffer test (#7784)
1 parent 9de06d3 commit 0e10ae2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

e2e/validators.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ func ValidateNetworkInterfaceConfig(ctx context.Context, s *Scenario, nicConfig
296296
s.T.Logf("Parsed NICs list: %v (count: %d)", nics, len(nics))
297297

298298
if len(nics) == 0 || (len(nics) == 1 && strings.TrimSpace(nics[0]) == "") {
299-
s.T.Fatalf("no nics found to validate network interface config")
299+
s.T.Logf("No PCI devices (NICs) with enP* slot pattern found - skipping network interface config validation")
300300
return
301301
}
302302

0 commit comments

Comments
 (0)