Skip to content

Commit

Permalink
Change GCP CDN to AWS CloudFront CDN
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmyzhen committed Sep 17, 2024
1 parent e0bb639 commit 7e4b6c5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/features/analysis/analysisActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,16 +97,16 @@ function fetchAnalysisInput(geneSymbol) {
return axios
.all([
axios.get(
`https://cdn-data-assets.extrameta.org/input/acute_blood/${geneSymbol.toUpperCase()}.json`
`https://ds415vxwhii54.cloudfront.net/input/acute_blood/${geneSymbol.toUpperCase()}.json`
).catch(useNull),
axios.get(
`https://cdn-data-assets.extrameta.org/input/acute_muscle/${geneSymbol.toUpperCase()}.json`
`https://ds415vxwhii54.cloudfront.net/input/acute_muscle/${geneSymbol.toUpperCase()}.json`
).catch(useNull),
axios.get(
`https://cdn-data-assets.extrameta.org/input/longterm_blood/${geneSymbol.toUpperCase()}.json`
`https://ds415vxwhii54.cloudfront.net/input/longterm_blood/${geneSymbol.toUpperCase()}.json`
).catch(useNull),
axios.get(
`https://cdn-data-assets.extrameta.org/input/longterm_muscle/${geneSymbol.toUpperCase()}.json`
`https://ds415vxwhii54.cloudfront.net/input/longterm_muscle/${geneSymbol.toUpperCase()}.json`
).catch(useNull),
])
.then(
Expand Down

0 comments on commit 7e4b6c5

Please sign in to comment.