-
Notifications
You must be signed in to change notification settings - Fork 9
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
Allow stale values requests to be repeated #159
base: main
Are you sure you want to change the base?
Conversation
This addresses issue numberscope#154, using the same technique as PR numberscope#127.
When I pull this and
|
I'm guessing this means I need to reset the database as part of this PR, since there's a new column? Trying that. |
Yes, that was my problem, didn't realize I needed to reset database. Working now. |
|
The following endpoints return server error (two are shown below from by-hand testing): http://127.0.0.1:5000/api/get_oeis_metadata/A028444
http://127.0.0.1:5000/api/search_oeis/germain
|
The errors that @katestange reported are also happening on |
@Vectornaut is this PR obsolete in light of #164? I don't think so, because I think values requests are the remaining thing we are going to the OEIS server for, and they might still go bad (say because of a network disruption) and hang out there a long time and go stale. So I suspect we still need this change. When you have a chance, please update it. Thanks! |
This addresses issue #154, using the same technique as pull request #127.