What to do with chrome sending extra requests?

Your best bet is to follow standard web development best practises: don’t change application state as a result of a GET call.

If you’re worried I recommend updating your data layer unit tests for GET calls to be duplicated & ensure they return the same data.

(I’m not seeing this behaviour with Chrome 8.0.552.224, by the way, is very new?)

Leave a Comment