Skip to content
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 API calls without GAE context #284

Merged
merged 2 commits into from Jul 18, 2022
Merged

allow API calls without GAE context #284

merged 2 commits into from Jul 18, 2022

Commits on Jul 14, 2022

  1. allow API calls without GAE context

    The ApiHost used to require a security ticket for all API calls, so the
    client side code used to be able to assume that  any request without one
    was invalid and reject it. The backend now is able to handle requests
    without security tickets in many cases, so the client side check is now
    just getting in the way. This change removes that check and lets the
    backend attempt to handle all requests.
    
    The way the client implementation happened to require a security ticket
    was actually by requiring a GAE context. This change removes that
    constraint as well and removes the now-unecessary BackgroundContext.
    zevdg committed Jul 14, 2022
    Copy the full SHA
    7b2ea6d View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2022

  1. tiny naming fix

    zevdg committed Jul 18, 2022
    Copy the full SHA
    1419b9e View commit details
    Browse the repository at this point in the history