You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@deltacloud.apache.org by mf...@redhat.com on 2012/02/23 14:56:03 UTC

[PATCH core 7/7] CIMI: Removed debugging 'puts' from machine entity in client

From: Michal Fojtik <mf...@redhat.com>


Signed-off-by: Michal fojtik <mf...@redhat.com>
---
 clients/cimi/lib/entities/machine.rb |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/clients/cimi/lib/entities/machine.rb b/clients/cimi/lib/entities/machine.rb
index c17925b..256ae77 100644
--- a/clients/cimi/lib/entities/machine.rb
+++ b/clients/cimi/lib/entities/machine.rb
@@ -32,7 +32,6 @@ class CIMI::Frontend::Machine < CIMI::Frontend::Entity
 
   get '/cimi/machines/:id' do
     machine_xml = get_entity('machines', params[:id], credentials)
-    puts machine_xml
     @machine= CIMI::Model::Machine.from_xml(machine_xml)
     haml :'machines/show'
   end
@@ -98,7 +97,6 @@ class CIMI::Frontend::Machine < CIMI::Frontend::Entity
         }
       }
     end.to_xml
-    puts machine_xml
     begin
       result = create_entity('machines', machine_xml, credentials)
       machine = CIMI::Model::MachineCollection.from_xml(result)
-- 
1.7.9.1