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

fix: NullPointerException on AbstractReadContext.span #3036

Merged
merged 2 commits into from
Apr 16, 2024

Commits on Apr 15, 2024

  1. fix: NullPointerException on AbstractReadContext.span

    In case of a storm of requests for sessions leads to the session pool
    being temporarily exhausted, the session pool will return RESOURCE_EXHAUSTED
    errors for those requests. That error was however not propagated to any
    additional threads that were also waiting for the same transaction, and
    would cause these threads to continue with the transaction even though
    no valid session had been assigned. This fix ensures that the exception
    is also propagated to any thread waiting for the session.
    olavloite committed Apr 15, 2024
    Configuration menu
    Copy the full SHA
    aa5d8da View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    828c8a6 View commit details
    Browse the repository at this point in the history