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

Derive all internal contexts from Client context #514

Merged
merged 1 commit into from
Aug 8, 2024

Commits on Aug 7, 2024

  1. Derive all internal contexts from Client context

    We were previously using `context.Background()` in some situations to
    avoid cancellation of things that really shouldn't be cancelled by the
    user context cancellation. However, we can now do that with
    `context.WithoutCancel` instead in order to preserve context values
    without any cancellation or deadline.
    
    Fixes #512.
    bgentry committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    e500ef7 View commit details
    Browse the repository at this point in the history