commit
64c45c4789
2 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@ module ActiveStorage
|
|||
@adapter = Cellar::CellarAdapter.new(access_key_id, secret_access_key, bucket)
|
||||
end
|
||||
|
||||
def upload(key, io, checksum: nil)
|
||||
def upload(key, io, checksum: nil, **)
|
||||
instrument :upload, key: key, checksum: checksum do
|
||||
@adapter.session { |s| s.upload(key, io, checksum) }
|
||||
end
|
||||
|
|
|
@ -34,7 +34,7 @@ module Cellar
|
|||
@signer = signer
|
||||
end
|
||||
|
||||
def upload(key, io, checksum: nil, **)
|
||||
def upload(key, io, checksum)
|
||||
with_io_length(io) do |io, length|
|
||||
request = Net::HTTP::Put.new("/#{key}")
|
||||
request.content_type = 'application/octet-stream'
|
||||
|
|
Loading…
Reference in a new issue