You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use **`capture_response=False`** parameter in both `capture_lambda_handler` and `capture_method` decorators to instruct Tracer **not** to serialize function responses as metadata.
203
203
204
-
!!! info "This is commonly useful in two scenarios"
204
+
!!! info "This is commonly useful in three scenarios"
205
205
206
206
1. You might **return sensitive** information you don't want it to be added to your traces
207
207
2. You might manipulate **streaming objects that can be read only once**; this prevents subsequent calls from being empty
208
+
3. You might return **more than 64K** of data _e.g., `message too long` error_
0 commit comments