mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
[rackspace] fix argument list for File#save
This commit is contained in:
parent
f589426319
commit
1b35b9d2ca
1 changed files with 2 additions and 2 deletions
|
@ -41,9 +41,9 @@ module Fog
|
|||
end
|
||||
end
|
||||
|
||||
def save(options = {})
|
||||
def save
|
||||
requires :body, :directory, :key
|
||||
data = connection.put_object(directory.name, @key, @body, options)
|
||||
data = connection.put_object(directory.name, @key, @body)
|
||||
@etag = data.headers['ETag']
|
||||
true
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue