Skip to content

Commit

Permalink
Fixes format
Browse files Browse the repository at this point in the history
  • Loading branch information
owent committed Dec 8, 2023
1 parent 54fb976 commit 692cfed
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions exporters/otlp/src/otlp_grpc_client.cc
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,10 @@ static sdk::common::ExportResult InternalDelegateAsyncExport(

OtlpGrpcClient::OtlpGrpcClient()
#ifdef ENABLE_ASYNC_EXPORT
: is_shutdown_{false}
: is_shutdown_
{
false
}
#endif
{}

Expand Down Expand Up @@ -300,7 +303,7 @@ std::shared_ptr<grpc::Channel> OtlpGrpcClient::MakeChannel(const OtlpGrpcClientO
ssl_opts.pem_private_key = GetFileContentsOrInMemoryContents(options.ssl_client_key_path,
options.ssl_client_key_string);
ssl_opts.pem_cert_chain = GetFileContentsOrInMemoryContents(options.ssl_client_cert_path,
options.ssl_client_cert_string);
options.ssl_client_cert_string);

#endif
channel =
Expand Down

0 comments on commit 692cfed

Please sign in to comment.