Skip to content

Commit 9539d35

Browse files
committed
adjust name
Signed-off-by: Fabian Martinez <[email protected]>
1 parent 4f6c0e1 commit 9539d35

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

workflow/activity_context.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ type callActivityOption func(*callActivityOptions) error
4040

4141
type callActivityOptions struct {
4242
rawInput *wrapperspb.StringValue
43-
retryPolicy *ActivityRetryPolicy
43+
retryPolicy *RetryPolicy
4444
}
4545

46-
type ActivityRetryPolicy struct {
46+
type RetryPolicy struct {
4747
MaxAttempts int
4848
InitialRetryInterval time.Duration
4949
BackoffCoefficient float64
@@ -71,7 +71,7 @@ func ActivityRawInput(input string) callActivityOption {
7171
}
7272
}
7373

74-
func RetryPolicy(policy ActivityRetryPolicy) callActivityOption {
74+
func ActivityRetryPolicy(policy RetryPolicy) callActivityOption {
7575
return func(opts *callActivityOptions) error {
7676
opts.retryPolicy = &policy
7777
return nil

0 commit comments

Comments
 (0)