8000 core: logging the error message when onClose() itself fails by NaveenPrasannaV · Pull Request #11880 · grpc/grpc-java · GitHub
[go: up one dir, main page]

Skip to content

core: logging the error message when onClose() itself fails #11880

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

Merged
merged 8 commits into from
Feb 11, 2025
Prev Previous commit
Next Next commit
Examples: Updated HelloWorldServer using Executor
  • Loading branch information
NaveenPrasannaV committed Jan 23, 2025
commit 06dcb560b772e176d72c5fbb496cd830fc754546
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,12 @@
import io.grpc.InsecureServerCredentials;
import io.grpc.Server;
import io.grpc.stub.StreamObserver;
import io.grpc.ServerBuilder;
import java.io.IOException;
import java.util.concurrent.TimeUnit;
import java.util.logging.Logger;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

/**
* Server that manages startup/shutdown of a {@code Greeter} server.
Expand Down
Loading
0