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

configure max_nextwork_retries at the client level #1826

Merged
merged 5 commits into from
Mar 27, 2025
Merged

Conversation

xavdid-stripe
Copy link
Member

@xavdid-stripe xavdid-stripe commented Mar 19, 2025

Why?

Most request configuration should happen at the client level, not the global level. The global value is still used as an initial default, but it'll be removed in the future.

note: I couldn't get end-to-end tests for this working because of problems with getting the mocks right. I've done some local testing and feel good about it working, but I'd feel better with a unit test. We can follow up with that or pair on it, if you'd like.

What?

  • add max_nextwork_retries to RequestOptions, making it available to every method
  • parse those options out of $config during RequestOptions parsing
  • add arguments to pass that value down through all of the request-related methods
  • add tests

See Also

Changelog

  • Allow setting maxNetworkRetries at the StripeClient level via a new argument to the RequestOptions constructor
    • ⚠️ (potentially breaking) a client's configuration for maxNetworkRetries is set during client initialization. Subsequent calls to Stripe::setMaxNetworkRetries() after client creation won't affect that client.
  • Allow setting maxNetworkRetries per-request via the max_network_retries config argument. This works for both the service and resource based patterns. In both cases, an explicitly passed value takes precedence over the global (or client) value.

@xavdid-stripe xavdid-stripe marked this pull request as ready for review March 25, 2025 23:06
@xavdid-stripe xavdid-stripe requested a review from a team as a code owner March 25, 2025 23:06
@xavdid-stripe xavdid-stripe merged commit 2836850 into master Mar 27, 2025
22 checks passed
@xavdid-stripe xavdid-stripe deleted the DEVSDK-1446 branch March 27, 2025 22:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants