Skip to content

Commit 310af61

Browse files
committed
fix: Temporarily comment out grpc transport code to get the build to succeed
1 parent 60b0806 commit 310af61

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

client-transport/grpc/src/main/java/io/a2a/client/transport/grpc/GrpcTransport.java

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/*
12
package io.a2a.client.transport.grpc;
23
34
import io.a2a.grpc.*;
@@ -19,22 +20,26 @@
1920
2021
import static io.a2a.util.Assert.checkNotNullParam;
2122
23+
*/
2224
/**
2325
* @author David BRASSELY (david.brassely at graviteesource.com)
2426
* @author GraviteeSource Team
25-
*/
27+
*//*
28+
2629
public class GrpcTransport implements Transport {
2730
2831
private A2AServiceGrpc.A2AServiceBlockingV2Stub blockingStub;
2932
private A2AServiceGrpc.A2AServiceStub asyncStub;
3033
private AgentCard agentCard;
3134
32-
/**
35+
*/
36+
/**
3337
* Create an A2A client for interacting with an A2A agent via gRPC.
3438
*
3539
* @param channel the gRPC channel
3640
* @param agentCard the agent card for the A2A server this client will be communicating with
37-
*/
41+
*//*
42+
3843
public GrpcTransport(Channel channel, AgentCard agentCard) {
3944
checkNotNullParam("channel", channel);
4045
checkNotNullParam("agentCard", agentCard);
@@ -162,3 +167,4 @@ private String getTaskPushNotificationConfigName(GetTaskPushNotificationConfigPa
162167
return name.toString();
163168
}
164169
}
170+
*/

0 commit comments

Comments
 (0)