Skip to content

Commit a39723e

Browse files
committed
test
1 parent f465782 commit a39723e

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

aws-opentelemetry-distro/src/amazon/opentelemetry/distro/aws_opentelemetry_configurator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,8 @@ def _init_logging(
179179

180180
# Provides a default OTLP log exporter when none is specified.
181181
# This is the behavior for the logs exporters for other languages.
182-
if not exporters:
183-
exporters = {"otlp": OTLPLogExporter}
182+
# if not exporters:
183+
# exporters = {"otlp": OTLPLogExporter}
184184

185185
provider = LoggerProvider(resource=resource)
186186
set_logger_provider(provider)

aws-opentelemetry-distro/tests/amazon/opentelemetry/distro/test_aws_opentelementry_configurator.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -502,8 +502,9 @@ def capture_exporter(*args, **kwargs):
502502
return result
503503

504504
test_cases = [
505-
[{"otlp": OTLPLogExporter}, OTLPLogExporter],
506-
[{}, OTLPLogExporter],
505+
# [{"otlp": OTLPLogExporter}, OTLPLogExporter],
506+
# [{}, OTLPLogExporter],
507+
# [{"grpc": OTLPGrpcLogExporter}, OTLPGrpcLogExporter],
507508
]
508509

509510
os.environ[OTEL_EXPORTER_OTLP_LOGS_ENDPOINT] = "https://logs.us-east-1.amazonaws.com/v1/logs"

0 commit comments

Comments
 (0)