You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Official HTTPx docs says that we should use the retry_on option to decide if teh request should be retried or not
234
+
# However, HTTPx assumes that connection errors such as timeout error should be retried by default and it doesn't consider retry_on block at all at that case
235
+
# So, we have to do the following trick to avoid retries when a Timeout error happens while streaming a component
236
+
# If the streamed component returned any chunks, it shouldn't retry on errors, as it would cause page duplication
237
+
# The SSR-generated html will be written to the page two times in this case
0 commit comments