We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0c075a commit ba01f62Copy full SHA for ba01f62
sentry_sdk/consts.py
@@ -26,7 +26,7 @@
26
"before_send": None,
27
"before_breadcrumb": None,
28
"debug": False,
29
- "attach_stacktrace": True,
+ "attach_stacktrace": False,
30
}
31
32
tests/integrations/aws_lambda/test_aws.py
@@ -29,6 +29,9 @@ def capture_event(self, event):
def shutdown(self, timeout, callback=None):
# Delay event output like this to test proper shutdown
+ # Note that AWS Lambda trunchates the log output to 4kb, so you better
33
+ # pray that your events are smaller than that or else tests start
34
+ # failing.
35
for event in self._queue:
36
print("EVENT:", json.dumps(event))
37
0 commit comments