Skip to content

Commit 68e05a8

Browse files
authored
Merge pull request #2338 from broadinstitute/development
Release 1.106.2
2 parents ff36b69 + 99718a3 commit 68e05a8

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

app/lib/bulk_download_service.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def self.generate_curl_configuration(study_files:,
106106
file_output_path = RequestUtils.format_path_for_os(
107107
"#{shortname}/#{file_entry['name']}", os
108108
)
109-
file_config = "--location\nurl=\"#{file_entry['url']}\"\noutput=\"#{file_output_path}\""
109+
file_config = "--location\nurl=\"#{file_entry['azul_url']}\"\noutput=\"#{file_output_path}\""
110110
azul_file_configs << file_config
111111
end
112112
end

app/models/import_service_config/hca.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def id_from_method; end
4747
def id_from; end
4848

4949
def file_access_info
50-
load_file&.[]('url')
50+
load_file&.[]('azul_url')
5151
end
5252

5353
def study_default_settings

config/application.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class Application < Rails::Application
2929
config.middleware.use Rack::Brotli
3030

3131
# Docker image for file parsing via scp-ingest-pipeline
32-
config.ingest_docker_image = 'gcr.io/broad-singlecellportal-staging/scp-ingest-pipeline:1.43.3'
32+
config.ingest_docker_image = 'gcr.io/broad-singlecellportal-staging/scp-ingest-pipeline:1.43.4'
3333

3434
# Docker image for image pipeline jobs
3535
config.image_pipeline_docker_image = 'gcr.io/broad-singlecellportal-staging/image-pipeline:0.1.0_c2b090043'

test/integration/external/hca_azul_client_test.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def get_entries_from_response(response, key)
150150
files = ApplicationController.hca_azul_client.files(size: 1)
151151
assert_equal 1, files.size
152152
file = files.first
153-
keys = %w[name format size url fileSource].sort
153+
keys = %w[name format size azul_url accessible fileSource].sort
154154
assert_equal keys, file.keys.sort & keys
155155
end
156156

@@ -159,7 +159,7 @@ def get_entries_from_response(response, key)
159159
files = ApplicationController.hca_azul_client.files(query: @query_json, size: 1)
160160
assert_equal 1, files.size
161161
file = files.first
162-
keys = %w[name format size url fileSource].sort
162+
keys = %w[name format size azul_url accessible fileSource].sort
163163
assert_equal keys, file.keys.sort & keys
164164
end
165165

0 commit comments

Comments
 (0)