pull/31257/head
Yash Tibrewal 2 years ago committed by GitHub
parent 5e7e332b33
commit 54dd7563c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/cpp/ext/filters/logging/logging_sink.h
  2. 3
      src/cpp/ext/gcp/BUILD
  3. 4
      test/core/event_engine/test_suite/server_test.cc

@ -21,6 +21,8 @@
#include <grpc/support/port_platform.h>
#include <stdint.h>
#include "absl/strings/string_view.h"
namespace grpc {

@ -98,6 +98,9 @@ grpc_cc_library(
hdrs = [
"observability_logging_sink.h",
],
external_deps = [
"absl/strings",
],
language = "c++",
tags = ["nofixdeps"],
visibility = ["//test:__subpackages__"],

@ -12,9 +12,12 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#include <stdint.h>
#include <algorithm>
#include <chrono>
#include <memory>
#include <ratio>
#include <string>
#include <thread>
#include <tuple>
@ -31,7 +34,6 @@
#include <grpc/event_engine/event_engine.h>
#include <grpc/event_engine/memory_allocator.h>
#include <grpc/grpc.h>
#include <grpc/support/log.h>
#include "src/core/lib/channel/channel_args.h"
#include "src/core/lib/event_engine/channel_args_endpoint_config.h"

Loading…
Cancel
Save