We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 652eed0 commit 4e350cbCopy full SHA for 4e350cb
2 files changed
docs/developer/client/index.rst
@@ -563,5 +563,5 @@ as things like extra data, or tags.
563
- Tag keys are limited to 32 characters.
564
- Tag values are limited to 200 characters.
565
- Culprits are limited to 200 characters.
566
-- Messages are limited to 1000 characters.
+- Messages are limited to 1024 characters.
567
- Http data (the body) is limited to 1024 characters.
src/sentry/coreapi.py
@@ -31,7 +31,7 @@
31
logger = logging.getLogger('sentry.coreapi.errors')
32
33
MAX_CULPRIT_LENGTH = 200
34
-MAX_MESSAGE_LENGTH = 1000
+MAX_MESSAGE_LENGTH = 1024
35
36
INTERFACE_ALIASES = {
37
'exception': 'sentry.interfaces.Exception',
0 commit comments