mirror of
https://github.com/puppetlabs/beaker-vmpooler.git
synced 2026-01-26 02:58:42 -05:00
(MAINT) fix connection preferences
Previously, beaker-vmpooler defined its connection preferences as string options, but beaker provides defaults as symbols. This ends with beaker saying that it doesn't support methods that it does due to the mismatch. This will get rid of those messages, as the provided methods will be symbols, matching what beaker expects
This commit is contained in:
parent
3ac63b61da
commit
b1f30c268f
1 changed files with 1 additions and 1 deletions
|
|
@ -53,7 +53,7 @@ module Beaker
|
||||||
end
|
end
|
||||||
|
|
||||||
def connection_preference(host)
|
def connection_preference(host)
|
||||||
['vmhostname', 'ip', 'hostname']
|
[:vmhostname, :ip, :hostname]
|
||||||
end
|
end
|
||||||
|
|
||||||
def check_url url
|
def check_url url
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue