Closed
Description
Hi,
I have problem with configuration of sentry_sdk. My code is behind corporate proxy and http_proxy
is configured on machine as env variable (required when I want to install something via pip for example). Also I have env variable no_proxy
where I added ip address for host where sentry is working (this ip is inside corporate network). When I try send event to sentry I got return code 403 (proxy refuse request). Probably sentry_sdk automacally fetch proxy from http_proxy env but ignore no_proxy. When I remove http_proxy from env everything is working. How can I configure python_sdk to ignore my http_proxy env variable? My code:
import logging
import sentry_sdk
from sentry_sdk.integrations.logging import LoggingIntegration
sentry_logging = LoggingIntegration(
level=logging.INFO,
event_level=logging.ERROR
)
sentry_sdk.init(
dsn="<dsn>",
integrations=[sentry_logging],
debug=True,
)