Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ManageIQ/manageiq-providers-vmware
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8ca203fb8b63e7c1a4c2cb2dea019d09365e0c09
Choose a base ref
..
head repository: ManageIQ/manageiq-providers-vmware
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2e9ced0ff20b85276fdcbe0a3d3e9a2432cc1266
Choose a head ref
Showing with 2 additions and 4 deletions.
  1. +2 −4 app/models/manageiq/providers/vmware/infra_manager/vm/remote_console.rb
Original file line number Diff line number Diff line change
@@ -9,14 +9,12 @@ module ManageIQ::Providers::Vmware::InfraManager::Vm::RemoteConsole
"VM must be running."
end
end
supports :html5_console
supports(:html5_console) { unsupported_reason(:console) }
supports :vmrc_console do
unsupported_reason(:console) ||
ext_management_system.unsupported_reason(:vmrc_console)
end
supports :vnc_console do
unsupported_reason(:console)
end
supports :vnc_console { unsupported_reason(:console) }
supports :webmks_console do
unsupported_reason(:console) ||
ext_management_system.unsupported_reason(:webmks_console)