Skip to content

Commit e913370

Browse files
Make TaskOptions constructor with both policy and handler public
Signed-off-by: Mason <[email protected]>
1 parent 2c675de commit e913370

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/main/java/io/dapr/durabletask/TaskOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public final class TaskOptions {
99
private final RetryPolicy retryPolicy;
1010
private final RetryHandler retryHandler;
1111

12-
private TaskOptions(RetryPolicy retryPolicy, RetryHandler retryHandler) {
12+
public TaskOptions(RetryPolicy retryPolicy, RetryHandler retryHandler) {
1313
this.retryPolicy = retryPolicy;
1414
this.retryHandler = retryHandler;
1515
}

0 commit comments

Comments
 (0)