Skip to content

Commit dc961a2

Browse files
committed
fix missing statics
1 parent f407b62 commit dc961a2

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.bazelrc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ build --features=parse_headers
1212
build --dynamic_mode=off
1313

1414
common --noenable_workspace
15-
common --remote_download_all
15+
common --remote_download_minimal
1616

1717
# Avoid using c:\windows\system32\bash.exe
1818
common:windows --shell_executable="c:\\program files\\git\\usr\\bin\\bash.exe"
@@ -106,12 +106,12 @@ common --incompatible_config_setting_private_default_visibility
106106
common --incompatible_disable_native_repo_rules
107107
common --incompatible_disable_non_executable_java_binary
108108
# For jetbrains bazel plugin
109-
# common --incompatible_disable_target_provider_fields
109+
common --incompatible_disable_target_provider_fields
110110
common --incompatible_disallow_empty_glob
111111
common --incompatible_disallow_struct_provider_syntax
112112
common --incompatible_strict_action_env
113113
# Enabled for the experimental JetBrains bazel plugin
114-
# common --incompatible_struct_has_no_methods
114+
common --incompatible_struct_has_no_methods
115115
common --incompatible_use_plus_in_repo_names
116116

117117

all_sdk_includes.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#if defined(_MSC_VER)
22
#include <opentelemetry/exporters/etw/etw_logger.h>
33
#include <opentelemetry/exporters/etw/etw_tracer.h>
4+
#endif
5+
46
#include <opentelemetry/exporters/otlp/otlp_grpc_forward_proxy.h>
5-
#endif

exporters/otlp/src/otlp_grpc_forward_proxy.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -372,12 +372,12 @@ void OtlpGrpcForwardProxy::Shutdown()
372372
impl->server->Shutdown();
373373
}
374374

375-
void EnableDefaultHealthCheckService(bool enable)
375+
void OtlpGrpcForwardProxy::EnableDefaultHealthCheckService(bool enable)
376376
{
377377
grpc::EnableDefaultHealthCheckService(enable);
378378
}
379379

380-
void InitProtoReflectionServerBuilderPlugin()
380+
void OtlpGrpcForwardProxy::InitProtoReflectionServerBuilderPlugin()
381381
{
382382
grpc::reflection::InitProtoReflectionServerBuilderPlugin();
383383
}

0 commit comments

Comments
 (0)