Flowdock
method

download_chunk

Importance_0
v6.1.7.7 - Show latest stable - 0 notes - Class: GCSService
download_chunk(key, range) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activestorage/lib/active_storage/service/gcs_service.rb, line 51
    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
Register or log in to add new notes.