Skip to content

Commit

Permalink
sentryio: fix depreciated args
Browse files Browse the repository at this point in the history
  • Loading branch information
naisanzaa committed May 6, 2024
1 parent b2de400 commit 4831cbd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 0 additions & 2 deletions automon/integrations/sentryio/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ def __init__(self, dsn: str = None, config: SentryConfig = None, *args, **kwargs
server_name=self.config.server_name,
in_app_include=self.config.in_app_include,
in_app_exclude=self.config.in_app_exclude,
request_bodies=self.config.request_bodies,
with_locals=self.config.with_locals,
ca_certs=self.config.ca_certs,
integrations=self.config.integrations,
default_integrations=self.config.default_integrations,
Expand Down
2 changes: 2 additions & 0 deletions automon/integrations/sentryio/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ def __init__(
self.server_name = None
self.in_app_include = None
self.in_app_exclude = None
# depreciated
self.request_bodies = request_bodies or 'always'
# depreciated
self.with_locals = None
self.ca_certs = None

Expand Down

0 comments on commit 4831cbd

Please sign in to comment.