Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix condition for verify_disks_lso_attached
This PR: red-hat-storage#10120 Broke original condition: if config.ENV_DATA.get("platform") != constants.BAREMETAL_PLATFORM: and changed to: if config.ENV_DATA.get("platform") in [ constants.BAREMETAL_PLATFORM, constants.HCI_BAREMETAL, ]: There should be `not in`. Which is fixed in this commit. Signed-off-by: Petr Balogh <[email protected]>
- Loading branch information