Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
ensembl-io
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ensembl-gh-mirror
ensembl-io
Commits
0f8df026
Unverified
Commit
0f8df026
authored
6 years ago
by
Imran Salam
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Check response status code instead of message for file fetch requests
parent
92630dd2
No related branches found
Branches containing commit
No related tags found
2 merge requests
!74
Check response status code instead of message for file fetch requests
,
!74
Check response status code instead of message for file fetch requests
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/EnsEMBL/Web/File/Utils/URL.pm
+1
-1
1 addition, 1 deletion
modules/EnsEMBL/Web/File/Utils/URL.pm
with
1 addition
and
1 deletion
modules/EnsEMBL/Web/File/Utils/URL.pm
+
1
−
1
View file @
0f8df026
...
...
@@ -341,7 +341,7 @@ sub fetch_file {
my
$dest
=
$args
->
{'
destination_path
'}
?
$args
->
{'
destination_path
'}
.
"
$filename
"
:
"
/tmp/
$filename
";
my
$response
=
$ua
->
mirror
(
$file_url
,
$dest
);
return
$dest
if
(
$response
->
{
_
msg
}
eq
'
OK
'
);
return
$dest
if
(
$response
->
{
_
rc
}
==
200
);
if
(
$args
->
{'
nice
'})
{
return
{'
error
'
=>
"
Cannot download file (
$file_url
). HTTP request error code
"
.
$response
->
{
_rc
}};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment