Skip to content

Commit

Permalink
[BUILD] Fix default bazel build
Browse files Browse the repository at this point in the history
  • Loading branch information
esigo committed Nov 28, 2022
1 parent ec90007 commit 41b9ec0
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0

#include "opentelemetry/ext/http/client/http_client.h"
#include "opentelemetry/ext/http/client/http_client_factory.h"
#include "opentelemetry/test_common/ext/http/client/nosend/http_client_nosend.h"
#ifdef ENABLE_TEST
# include "opentelemetry/ext/http/client/http_client.h"
# include "opentelemetry/ext/http/client/http_client_factory.h"
# include "opentelemetry/test_common/ext/http/client/nosend/http_client_nosend.h"

namespace http_client = opentelemetry::ext::http::client;

std::shared_ptr<http_client::HttpClient> http_client::HttpClientFactory::CreateNoSend()
{
return std::make_shared<http_client::nosend::HttpClient>();
}
#endif

0 comments on commit 41b9ec0

Please sign in to comment.