Merge pull request #310 from hashicorp/active-machines

Environment#active_machines should return a list of  tuple
This commit is contained in:
Sophia Castellarin 2022-07-08 13:36:58 -05:00 committed by GitHub
commit 45882c7847
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -73,7 +73,7 @@ module Vagrant
targets = client.active_targets
names = []
targets.each do |t|
names << t.name
names << [t.name, t.provider_name.to_sym]
end
names
end