-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
Support upload of GZIPped artifacts through the API #4566
Comments
You can already do this with the header parameter specified here: https://docs.sentry.io/api/releases/post-release-files/ Note that it's a parameter on the request, NOT an actual header on the request, if that makes sense. |
@mattrobenolt thank you for the quick reply! var formData = {
name: urljoin(this.sentrySettings.publicUrl, filePath),
file: fs.createReadStream(fileName),
header: 'Content-Encoding:gzip',
}; |
Is this on sentry.io? |
yes |
Mind emailing into support@ so I can take a look? :) |
Sure thing mate, will email right now, thanks! |
Any updates on this? |
@kmiyashiro I have not fixed this yet, but definitely plan on doing so soon. Possibly this week. |
Reopening since this was a thing I thought worked, which doesn't. Bad mistake considering I wrote the code too. :( |
🎉 🎉 🎉 |
welp, something here wasn't great. Will need to try again. |
Could I ping you for an update? |
Hi @mattrobenolt sorry for bothering you, but do you know if this is still getting fixed? |
@mattrobenolt Does this mean it's impossible to upload gzipped files? This is slowing down deployment considerably. Can we help in any way getting this fixed? |
Any update @mattrobenolt? |
Could I ask again for an update on this @mattrobenolt? |
Looking forward for gzip support in Sentry, it will make things simple |
To the many people waiting for this issue to move forward: did you find a service (and if so, which?) that you'd recommend for features/support/community? My email is open if not comfortable to reply here. |
Has anyone found a workaround for this? |
I'm told that #9238 should have fixed this. Will verify and close if that's the case and investigate more otherwise. |
Closing this issue due to staleness. Feel free to comment here if you think we should still work on this. |
Hi, would it be possible to upload GZIPped artifacts through the sentry API when the upload is done with the Header
Content-Encoding: gzip
?Basically if that header is present during upload Sentry would unzip the received artifact after the upload is complete (ex: a sourcemap) and keep the same name.
The text was updated successfully, but these errors were encountered: