Skip to content

Commit 687d47c

Browse files
authored
Comment out Kombu instrumentation & tests (#1350)
1 parent 36d0ab2 commit 687d47c

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

newrelic/config.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2846,10 +2846,12 @@ def _process_module_builtin_defaults():
28462846
_process_module_definition(
28472847
"kafka.coordinator.heartbeat", "newrelic.hooks.messagebroker_kafkapython", "instrument_kafka_heartbeat"
28482848
)
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-
)
2849+
# Kombu instrumentation is causing crashes so until we figure out the root cause
2850+
# comment it out.
2851+
# _process_module_definition("kombu.messaging", "newrelic.hooks.messagebroker_kombu", "instrument_kombu_messaging")
2852+
# _process_module_definition(
2853+
# "kombu.serialization", "newrelic.hooks.messagebroker_kombu", "instrument_kombu_serializaion"
2854+
# )
28532855
_process_module_definition("logging", "newrelic.hooks.logger_logging", "instrument_logging")
28542856

28552857
_process_module_definition("loguru", "newrelic.hooks.logger_loguru", "instrument_loguru")

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,8 @@ envlist =
165165
python-template_jinja2-py37-jinja2030103,
166166
python-template_mako-{py37,py38,py39,py310,py311,py312,py313},
167167
rabbitmq-messagebroker_pika-{py37,py38,py39,py310,py311,py312,py313,pypy310}-pikalatest,
168-
rabbitmq-messagebroker_kombu-{py38,py39,py310,py311,py312,py313,pypy310}-kombulatest,
168+
;; Comment out Kombu until we can root cause the crash.
169+
; rabbitmq-messagebroker_kombu-{py38,py39,py310,py311,py312,py313,pypy310}-kombulatest,
169170
redis-datastore_redis-{py37,py311,pypy310}-redis04,
170171
redis-datastore_redis-{py37,py38,py39,py310,py311,py312,py313,pypy310}-redislatest,
171172
rediscluster-datastore_rediscluster-{py37,py312,py313,pypy310}-redislatest,

0 commit comments

Comments
 (0)