lib/fog/google/storage.rb in fog-1.10.0 vs lib/fog/google/storage.rb in fog-1.10.1

- old
+ new

@@ -53,10 +53,10 @@ def host_path_query(params, expires) params[:headers]['Date'] = expires.to_i params[:path] = CGI.escape(params[:path]).gsub('%2F', '/') query = [params[:query]].compact - query << "GoogleAccessKeyId=#{@google_storage_access_key_id}" + query << "GoogleAccessId=#{@google_storage_access_key_id}" query << "Signature=#{CGI.escape(signature(params))}" query << "Expires=#{params[:headers]['Date']}" "#{params[:host]}/#{params[:path]}?#{query.join('&')}" end