-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
View Script Logs / Report #1655
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1655 +/- ##
==========================================
- Coverage 76.52% 76.48% -0.05%
==========================================
Files 618 618
Lines 46920 46942 +22
Branches 849 850 +1
==========================================
- Hits 35904 35902 -2
- Misses 10920 10944 +24
Partials 96 96
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
raise "Unknown volume #{params[:volume]}" unless volume | ||
filename = "/#{volume}/#{params[:object_id]}" | ||
filename = sanitize_path(filename) | ||
elsif params[:bucket] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why no bucket before?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We never did a download from a bucket before ... just volumes. We always used the get_download_presigned_request
instead because the result was always a file to download. Now we're downloading to memory so we can display.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
filename at line 125 of storage_controller is not sanitized
Quality Gate passedIssues Measures |
closes #1549