Skip to content
New issue

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

Automated fix for refs/heads/ee-posix-tcp-listener #171

Open
wants to merge 1 commit into
base: ee-posix-tcp-listener
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Automated change: Fix sanity tests
  • Loading branch information
Vignesh2208 authored Oct 17, 2022
commit e54f28bf1cd3f5c74c41308f9a244e45a78f9eaa
2 changes: 1 addition & 1 deletion src/core/lib/event_engine/posix_engine/posix_engine.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
#include <algorithm>
#include <atomic>
#include <chrono>
#include <memory>
#include <cstring>
#include <memory>
#include <string>
#include <utility>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ void PosixEngineListenerImpl::AsyncConnectionAcceptor::NotifyOnAccept(
listener_->memory_allocator_factory_->CreateMemoryAllocator(
connection_name));
}
GPR_UNREACHABLE_CODE(return);
GPR_UNREACHABLE_CODE(return );
}

void PosixEngineListenerImpl::AsyncConnectionAcceptor::Shutdown() {
Expand Down Expand Up @@ -238,4 +238,4 @@ PosixEngineListenerImpl::~PosixEngineListenerImpl() {
#endif // GRPC_POSIX_SOCKET_TCP

} // namespace posix_engine
} // namespace grpc_event_engine
} // namespace grpc_event_engine
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
#ifndef GRPC_CORE_LIB_EVENT_ENGINE_POSIX_ENGINE_POSIX_ENGINE_LISTENER_H
#define GRPC_CORE_LIB_EVENT_ENGINE_POSIX_ENGINE_POSIX_ENGINE_LISTENER_H

#include <grpc/support/port_platform.h>

#include <atomic>
#include <functional>
#include <list>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ namespace posix_engine {
namespace {

using ResolvedAddress =
::grpc_event_engine::experimental::EventEngine::ResolvedAddress;
grpc_event_engine::experimental::EventEngine::ResolvedAddress;
using ListenerSocket = ListenerSocketsContainer::ListenerSocket;

#ifdef GRPC_HAVE_IFADDRS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class TestListenerSocketsContainer : public ListenerSocketsContainer {
}
return absl::NotFoundError("Socket not found!");
}

int Size() { return static_cast<int>(sockets_.size()); }

std::list<ListenerSocket>::const_iterator begin() { return sockets_.begin(); }
Expand Down