We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f94cc10 commit 217a3e4Copy full SHA for 217a3e4
1 file changed
s2a/src/main/java/io/grpc/s2a/S2AChannelCredentials.java
@@ -39,7 +39,6 @@
39
* Configures gRPC to use S2A for transport security when establishing a secure channel. Only for
40
* use on the client side of a gRPC connection.
41
*/
42
-@NotThreadSafe
43
public final class S2AChannelCredentials {
44
/**
45
* Creates a channel credentials builder for establishing an S2A-secured connection.
@@ -53,6 +52,7 @@ public static Builder createBuilder(String s2aAddress) {
53
52
}
54
55
/** Builds an {@code S2AChannelCredentials} instance. */
+ @NotThreadSafe
56
public static final class Builder {
57
private final String s2aAddress;
58
private ObjectPool<Channel> s2aChannelPool;
0 commit comments