-
-
Notifications
You must be signed in to change notification settings - Fork 157
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
Add CLI flag to retry HTTP requests #256
base: main
Are you sure you want to change the base?
Conversation
I think it would be a better fit to do the retry logic at the application level, not at the adapter. We could then use the What do you think? |
I see your point. The only disadvantage would be that the Symfony implementation couldn't be used then. |
I'm sorry, I wasn't very clear. When I said Application, i mean in |
Can you explain why that location is better? From my point of view, this feature is only related to the web-based workflow and isn't relevant for CLI. So if it should be implemented "higher up" in the code, my next choice would be However, this would still mean that we couldn't make use of Symfony's more sophisticated implementation of retries in |
This is something that also happens with fastcgi, so doing it at the cachetool layer would address both issues. See #199 |
Maybe I'm missing something here, but I don't think that this is possible without some major refactoring of the adapters. As far as I can see, the adapters behave quite differently when errors occur. Sometimes, Maybe it makes sense to rename the config option to |
Is there any update on this? We're experiencing issues of random 404 responses with the Symfony client when used in Deployer with the recipe. |
Due to implementation details in certain hosting setups, there can be a delay between creating the temporary cachetool file and it being accessible via HTTP. To address this, both FileGetContents and SymfonyHTTP clients are extended to retry HTTP requests on failure. By default, that new configuration option is set to
3
, which should cover most cases. However, its value can also be adjusted via CLI (--web-retry
) or config file (webRetry
).The test setup is extended to cover both successful and failed retries. In the test setup, the availability delay of the php server is used to cover the mentioned test cases.
Resolves #209