Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/sentry/objectstore/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ class ObjectstoreUploadOptions(TypedDict):
scopes: list[tuple[str, str]]
authToken: str | None
expirationPolicy: str
maxIndividualConcurrency: int
maxBatchConcurrency: int
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ def get(self, request: Request, project: Project) -> Response:
expirationPolicy=format_expiration(
TimeToLive(timedelta(days=30))
), # Hardcoded for now, check with Objectstore before increasing
maxIndividualConcurrency=16,
maxBatchConcurrency=16,
)

return Response({"objectstore": options})
Loading