We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8118331 commit b36b2ceCopy full SHA for b36b2ce
1 file changed
temporal-envconfig/src/main/java/io/temporal/envconfig/ClientConfigProfile.java
@@ -132,7 +132,7 @@ public WorkflowServiceStubsOptions toWorkflowServiceStubsOptions() {
132
if (this.metadata != null) {
133
builder.addGrpcMetadataProvider(() -> this.metadata);
134
}
135
- if (this.tls != null && !Boolean.FALSE.equals(this.tls.isDisabled())) {
+ if (this.tls != null && this.tls.isDisabled() != null && !this.tls.isDisabled()) {
136
InputStream clientCertStream = null;
137
InputStream keyFileStream = null;
138
InputStream trustCertCollectionInputStream = null;
0 commit comments