Skip to content

Commit 2cbefc8

Browse files
authored
Fix WorkflowHistoryIterator issue with unitialized field (temporalio#1636)
1 parent a8b5e31 commit 2cbefc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: temporal-sdk/src/main/java/io/temporal/internal/replay/ServiceWorkflowHistoryIterator.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ GetWorkflowExecutionHistoryResponse queryWorkflowExecutionHistory() {
109109
RpcRetryOptions.newBuilder()
110110
.setInitialInterval(retryServiceOperationInitialInterval)
111111
.setMaximumInterval(retryServiceOperationMaxInterval)
112-
.build();
112+
.validateBuildWithDefaults();
113113
GrpcRetryer.GrpcRetryerOptions grpcRetryerOptions =
114114
new GrpcRetryer.GrpcRetryerOptions(retryOptions, deadline);
115115
GetWorkflowExecutionHistoryRequest request =

0 commit comments

Comments
 (0)