Remove ajax timeout from contribution page on behalf of #18140
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Overview
You'll probably only hit this timeout when debugging / slow connection. But it's the only place (I could find) that specifies an AJAX timeout in CiviCRM templates/js and it doesn't seem needed.
Before
AJAX call
civicrm/ajax/permlocation
times out after 5 seconds and you see "Common.js HTTP timeout" in browser console if debugging / site is slow to load / changing payment processors is slow.After
Timeout gone.
civicrm/ajax/permlocation
loads in it's own time without timeout. If there was a real problem you'd see a 500 error or similar.Technical Details
It is possible to specify timeouts on AJAX calls but we generally don't in CiviCRM.
Comments