Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
qwenode committed Apr 25, 2024
1 parent bff25b0 commit 254d861
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ffunc/ffunc.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ func Retry(callable func() error, retries int) error {
if err != nil {
continue
}
err = nil
break
}
return nil
return err
}

0 comments on commit 254d861

Please sign in to comment.