Method: ActiveStorage::Service::GCSService#download_chunk

Defined in:
activestorage/lib/active_storage/service/gcs_service.rb

#download_chunk(key, range) ⇒ Object



58
59
60
61
62
63
64
# File 'activestorage/lib/active_storage/service/gcs_service.rb', line 58

def download_chunk(key, range)
  instrument :download_chunk, key: key, range: range do
    file_for(key).download(range: range).string
  rescue Google::Cloud::NotFoundError
    raise ActiveStorage::FileNotFoundError
  end
end