You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I specify a winrm_transport of :negotiate and a :port of 5985 (in my .kitchen.yml file) and I see that the data is being picked up properly. When it gets to this line, it renders the port variable as 5986. When I make the following change:
On line 664 of https://github.com/CenturyLinkCloud/chef-provisioning-vsphere/blob/master/lib/chef/provisioning/vsphere_driver/driver.rb,
it has the following code:
port = options[:port] || winrm_transport == :ssl ? '5986' : '5985'
I specify a winrm_transport of :negotiate and a :port of 5985 (in my .kitchen.yml file) and I see that the data is being picked up properly. When it gets to this line, it renders the port variable as 5986. When I make the following change:
port = options[:port] || (winrm_transport == :ssl ? '5986' : '5985')
It works as the prioritization of the operations is expected.
PS - I am new to Github and I hope I'm submitting this issue properly.
The text was updated successfully, but these errors were encountered: