We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the OTLP GRPC code, usage of the ENABLE_OTLP_GRPC_SSL_MTLS_PREVIEW flag is incorrect.
ENABLE_OTLP_GRPC_SSL_MTLS_PREVIEW
/data/malff/CODE/MY_GITHUB/opentelemetry-cpp/exporters/otlp [malff@malff-desktop otlp]$ grep -R ENABLE_OTLP_GRPC_SSL_MTLS_PREVIEW * include/opentelemetry/exporters/otlp/otlp_grpc_client_options.h:#ifdef ENABLE_OTLP_GRPC_SSL_MTLS_PREVIEW src/otlp_grpc_client.cc:#if ENABLE_OTLP_GRPC_SSL_MTLS_PREVIEW src/otlp_grpc_metric_exporter_options.cc:#ifdef ENABLE_OTLP_GRPC_SSL_MTLS_PREVIEW src/otlp_grpc_exporter_options.cc:#ifdef ENABLE_OTLP_GRPC_SSL_MTLS_PREVIEW src/otlp_grpc_log_record_exporter_options.cc:#ifdef ENABLE_OTLP_GRPC_SSL_MTLS_PREVIEW
File src/otlp_grpc_client.cc should use ifdef, not if.
src/otlp_grpc_client.cc
ifdef
if
The text was updated successfully, but these errors were encountered:
Fix open-telemetry#2545
0b966f8
Successfully merging a pull request may close this issue.
In the OTLP GRPC code, usage of the
ENABLE_OTLP_GRPC_SSL_MTLS_PREVIEW
flag is incorrect.File
src/otlp_grpc_client.cc
should useifdef
, notif
.The text was updated successfully, but these errors were encountered: