-
-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(BKR-1094) Deprecate vcloud's silent fallback to vmpooler #5
Conversation
Deprecates an historical convenience option to allow vmpooler hosts to be accessed transparently using vcloud.
Per discussion, this is "Do Not Merge" pending change to notify of deprecation (and continue old functionality of loading vmpooler) when option |
Jenkins, retest this please. |
1 similar comment
Jenkins, retest this please. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Once these small whitespace issues are resolved, then we'll be able to push this through
lib/beaker/hypervisor/vcloud.rb
Outdated
Beaker::Vmpooler.new(vcloud_hosts, options) | ||
else | ||
super | ||
end | ||
end | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this line is unnecessary
allow_any_instance_of( Beaker::Vmpooler ).to \ | ||
receive(:load_credentials).and_return(fog_file_contents) | ||
expect( opts[:logger] ).to receive(:warn).once | ||
Beaker::Vcloud.new( make_hosts, opts) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please pick a consistent spacing style for this PR and spread it out for the entire PR. In this test method I'm seeing these different styles, sometimes on the same line:
method( option )
method(option)
method( option)
Deprecates an historical convenience option to allow vmpooler hosts to be accessed transparently using vcloud.