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 36d0ab2 commit 687d47cCopy full SHA for 687d47c
newrelic/config.py
@@ -2846,10 +2846,12 @@ def _process_module_builtin_defaults():
2846
_process_module_definition(
2847
"kafka.coordinator.heartbeat", "newrelic.hooks.messagebroker_kafkapython", "instrument_kafka_heartbeat"
2848
)
2849
- _process_module_definition("kombu.messaging", "newrelic.hooks.messagebroker_kombu", "instrument_kombu_messaging")
2850
- _process_module_definition(
2851
- "kombu.serialization", "newrelic.hooks.messagebroker_kombu", "instrument_kombu_serializaion"
2852
- )
+ # Kombu instrumentation is causing crashes so until we figure out the root cause
+ # comment it out.
+ # _process_module_definition("kombu.messaging", "newrelic.hooks.messagebroker_kombu", "instrument_kombu_messaging")
+ # _process_module_definition(
2853
+ # "kombu.serialization", "newrelic.hooks.messagebroker_kombu", "instrument_kombu_serializaion"
2854
+ # )
2855
_process_module_definition("logging", "newrelic.hooks.logger_logging", "instrument_logging")
2856
2857
_process_module_definition("loguru", "newrelic.hooks.logger_loguru", "instrument_loguru")
tox.ini
@@ -165,7 +165,8 @@ envlist =
165
python-template_jinja2-py37-jinja2030103,
166
python-template_mako-{py37,py38,py39,py310,py311,py312,py313},
167
rabbitmq-messagebroker_pika-{py37,py38,py39,py310,py311,py312,py313,pypy310}-pikalatest,
168
- rabbitmq-messagebroker_kombu-{py38,py39,py310,py311,py312,py313,pypy310}-kombulatest,
+ ;; Comment out Kombu until we can root cause the crash.
169
+ ; rabbitmq-messagebroker_kombu-{py38,py39,py310,py311,py312,py313,pypy310}-kombulatest,
170
redis-datastore_redis-{py37,py311,pypy310}-redis04,
171
redis-datastore_redis-{py37,py38,py39,py310,py311,py312,py313,pypy310}-redislatest,
172
rediscluster-datastore_rediscluster-{py37,py312,py313,pypy310}-redislatest,
0 commit comments