Explorar el Código

Merge pull request #73 from lhuard1A/fix_aws_cluster_list

Fix './cluster.sh list' on AWS when some VMs have no name
Thomas Wiest hace 10 años
padre
commit
6a4398ec92
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      lib/aws_helper.rb

+ 1 - 1
lib/aws_helper.rb

@@ -19,7 +19,7 @@ module OpenShift
         retval = []
         hosts['_meta']['hostvars'].each do |host, info|
           retval << OpenStruct.new({
-            :name        => info['ec2_tag_Name'],
+            :name        => info['ec2_tag_Name']        || 'UNSET',
             :env         => info['ec2_tag_environment'] || 'UNSET',
             :public_ip   => info['ec2_ip_address'],
             :public_dns  => info['ec2_public_dns_name'],