-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bug or incorrect documentation for retry
method?
#25351
Comments
Looks to be a code typo. PR in a bit. |
tanmaykm
added a commit
to tanmaykm/julia
that referenced
this issue
Jan 2, 2018
fixes JuliaLang#25351 The retry check method is expected to return a boolean value. There does not seem to be a reason to expect the state to be returned. That seems to be a typo, which this corrects.
Hmm... Seems to be the other way round. Because the current tests return tuple. |
tanmaykm
added a commit
to tanmaykm/julia
that referenced
this issue
Jan 2, 2018
fixes JuliaLang#25351 The retry check function is expected to return a tuple of state and boolean
tanmaykm
added a commit
to tanmaykm/julia
that referenced
this issue
Jan 2, 2018
fixes JuliaLang#25351 The retry check function is expected to return a tuple of state and boolean [ci skip]
tanmaykm
added a commit
to tanmaykm/julia
that referenced
this issue
Mar 19, 2019
fixes JuliaLang#25351 The retry check function is expected to return a tuple of state and boolean [ci skip]
Closing. Fixed in #26138 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The
check
parameter forretry
is documented to return a boolean hereBut code seems to expect a tuple of state and boolean here
Appears to have been introduced in #19331
The text was updated successfully, but these errors were encountered: