@@ -81,7 +81,9 @@ def get_sentry_options():
81
81
SentryOption ("dsn" , "" , str .strip ),
82
82
SentryOption ("transport" , DEFAULT_OPTIONS ["transport" ], select_transport ),
83
83
SentryOption ("logging_level" , DEFAULT_LOG_LEVEL , get_sentry_logging ),
84
- SentryOption ("with_locals" , DEFAULT_OPTIONS ["with_locals" ], None ),
84
+ SentryOption (
85
+ "include_local_variables" , DEFAULT_OPTIONS ["include_local_variables" ], None
86
+ ),
85
87
SentryOption (
86
88
"max_breadcrumbs" , DEFAULT_OPTIONS ["max_breadcrumbs" ], to_int_if_defined
87
89
),
@@ -107,7 +109,9 @@ def get_sentry_options():
107
109
SentryOption ("http_proxy" , DEFAULT_OPTIONS ["http_proxy" ], None ),
108
110
SentryOption ("https_proxy" , DEFAULT_OPTIONS ["https_proxy" ], None ),
109
111
SentryOption ("ignore_exceptions" , DEFAULT_IGNORED_EXCEPTIONS , split_multiple ),
110
- SentryOption ("request_bodies" , DEFAULT_OPTIONS ["request_bodies" ], None ),
112
+ SentryOption (
113
+ "max_request_body_size" , DEFAULT_OPTIONS ["max_request_body_size" ], None
114
+ ),
111
115
SentryOption ("attach_stacktrace" , DEFAULT_OPTIONS ["attach_stacktrace" ], None ),
112
116
SentryOption ("ca_certs" , DEFAULT_OPTIONS ["ca_certs" ], None ),
113
117
SentryOption ("propagate_traces" , DEFAULT_OPTIONS ["propagate_traces" ], None ),
0 commit comments