mirror of
https://github.com/puppetlabs/vmpooler.git
synced 2026-01-26 01:58:41 -05:00
Merge pull request #330 from mattkirby/pooler_140_1
(POOLER-140) Fix typo in domain
This commit is contained in:
commit
211c56d669
2 changed files with 4 additions and 1 deletions
|
|
@ -12,6 +12,9 @@ If you're looking for changes from before this, refer to the project's
|
|||
git logs & PR history.
|
||||
# [Unreleased](https://github.com/puppetlabs/vmpooler/compare/0.6.1...master)
|
||||
|
||||
### Added
|
||||
- Validate a machine responds to vm\_ready? at checkout (POOLER-140)
|
||||
|
||||
# [0.6.1](https://github.com/puppetlabs/vmpooler/compare/0.6.0...0.6.1)
|
||||
|
||||
### Added
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ module Vmpooler
|
|||
vms = backend.smembers("vmpooler__ready__#{template_backend}")
|
||||
next if vms.empty?
|
||||
vms.reverse.each do |vm|
|
||||
ready = vm_ready?(vm, config[:domain])
|
||||
ready = vm_ready?(vm, config['domain'])
|
||||
if ready
|
||||
backend.smove("vmpooler__ready__#{template_backend}", "vmpooler__running__#{template_backend}", vm)
|
||||
return [vm, template_backend, template]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue