Skip to content

Commit 4e350cb

Browse files
committed
Increase message length limit to 1024
1 parent 652eed0 commit 4e350cb

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/developer/client/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,5 +563,5 @@ as things like extra data, or tags.
563563
- Tag keys are limited to 32 characters.
564564
- Tag values are limited to 200 characters.
565565
- Culprits are limited to 200 characters.
566-
- Messages are limited to 1000 characters.
566+
- Messages are limited to 1024 characters.
567567
- Http data (the body) is limited to 1024 characters.

src/sentry/coreapi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
logger = logging.getLogger('sentry.coreapi.errors')
3232

3333
MAX_CULPRIT_LENGTH = 200
34-
MAX_MESSAGE_LENGTH = 1000
34+
MAX_MESSAGE_LENGTH = 1024
3535

3636
INTERFACE_ALIASES = {
3737
'exception': 'sentry.interfaces.Exception',

0 commit comments

Comments
 (0)