1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

remove debug print lines

This commit is contained in:
Wesley Beary 2009-10-15 16:31:10 -07:00
parent e43744c676
commit eaf0f1a126
2 changed files with 0 additions and 3 deletions

View file

@ -29,8 +29,6 @@ module Fog
def save def save
options = { 'metadata' => @metadata, 'name' => @name, 'personality' => @personality } options = { 'metadata' => @metadata, 'name' => @name, 'personality' => @personality }
options = options.reject {|key, value| value.nil?} options = options.reject {|key, value| value.nil?}
p @personality
p options
data = connection.create_server(@flavor_id, @image_id, options) data = connection.create_server(@flavor_id, @image_id, options)
merge_attributes(data.body['server']) merge_attributes(data.body['server'])
true true

View file

@ -56,7 +56,6 @@ unless Fog.mocking?
} }
end end
end end
p data
request( request(
:body => data.to_json, :body => data.to_json,
:expects => 202, :expects => 202,