Skip to content

Commit dbb3881

Browse files
committed
Revert "Add debug print statements to diagnose why server is not starting."
This reverts commit 3719011.
1 parent 3719011 commit dbb3881

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

interop-testing/src/main/java/io/grpc/testing/integration/TestServiceServer.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,6 @@ void parseArgs(String[] args) {
156156
@SuppressWarnings("AddressSelection")
157157
@VisibleForTesting
158158
void start() throws Exception {
159-
System.out.println("TestServiceServer.start() called with addressType " + addressType);
160-
System.out.flush();
161159
executor = Executors.newSingleThreadScheduledExecutor();
162160
ServerCredentials serverCreds;
163161
if (useAlts) {
@@ -196,8 +194,6 @@ void start() throws Exception {
196194
((NettyServerBuilder) serverBuilder).addListenAddress(v4Address);
197195
}
198196
if (setMcsLimit) {
199-
System.out.println("TestServiceServer.start() setting mcs limit to 2.");
200-
System.out.flush();
201197
((NettyServerBuilder) serverBuilder).maxConcurrentCallsPerConnection(2);
202198
}
203199
break;
@@ -215,8 +211,6 @@ void start() throws Exception {
215211
default:
216212
throw new AssertionError("Unknown address type: " + addressType);
217213
}
218-
System.out.println("TestServiceServer.start() calling serverBuilder start.");
219-
System.out.flush();
220214
server = serverBuilder
221215
.maxInboundMessageSize(AbstractInteropTest.MAX_MESSAGE_SIZE)
222216
.addService(
@@ -226,8 +220,6 @@ void start() throws Exception {
226220
.intercept(OrcaMetricReportingServerInterceptor.create(metricRecorder))
227221
.build()
228222
.start();
229-
System.out.println("TestServiceServer.start() after calling serverBuilder start.");
230-
System.out.flush();
231223
}
232224

233225
@VisibleForTesting

0 commit comments

Comments
 (0)