Skip to content

Commit

Permalink
Merge pull request #4262 from rhrazdil/fix_nic_bootdevice
Browse files Browse the repository at this point in the history
Bug 1800976: Fix selection of PXE boot device
  • Loading branch information
openshift-merge-robot committed Feb 10, 2020
2 parents 40d2e7d + 6a94bd8 commit a9075da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export class VirtualMachine extends KubevirtDetailView {
}
if (provisionSource.method === ProvisionConfigName.PXE && template === undefined) {
// Select the last NIC as the source for booting
await wizard.selectBootableNIC(networkResources[networkResources.length - 1].network);
await wizard.selectBootableNIC(networkResources[networkResources.length - 1].name);
}
await wizard.next();

Expand Down

0 comments on commit a9075da

Please sign in to comment.