Remove untrue comment about single-chunk API

chunk_upload is and has always been working 'for real'. The only sense in
which the comment has been 'vaguely in the direction of truth' was that
with a chunkSize and maxRequestSize of 32MiB in practice sourcemap uploads
will often have been single-chunk in practice.

See #147
This commit is contained in:
Klaas van Schelven
2025-07-16 15:16:05 +02:00
parent 931f00135b
commit b9880fe59b

View File

@@ -40,9 +40,6 @@ def get_chunk_upload_settings(request, organization_slug):
# * https://github.com/getsentry/sentry/pull/29347
url = get_settings().BASE_URL + "/api/0/organizations/" + organization_slug + "/chunk-upload/"
# Our "chunk_upload" is chunked in name only; i.e. we only "speak chunked" for the purpose of API-compatability with
# sentry-cli, but we provide params here such that that cli will only send a single chunk.
return JsonResponse({
"url": url,