<div dir="ltr">Hi:<div><br></div><div>In ngx_http_upstream_test_next, the loop will continue when the status is matched, and the ngx_http_upstream_next_errors is non-repeating. I think we can jump out of for the unnecessary loop, and here is my patch:</div><div><br></div><div># HG changeset patch<br># User Jinhua Tan <<a href="mailto:312841925@qq.com">312841925@qq.com</a>><br># Date 1589378567 -28800<br>#      Wed May 13 22:02:47 2020 +0800<br># Node ID c79fcc4cf3acb68ca0e5c7767820c23308c40f6e<br># Parent  028b16e2798f8ec4c6a3d042a6ac8a07f7262690<br>Upstream: jump out of unnecessary loop after matching the status code.<br><br>diff -r 028b16e2798f -r c79fcc4cf3ac src/http/ngx_http_upstream.c<br>--- a/src/http/ngx_http_upstream.c      Fri May 08 19:19:16 2020 +0300<br>+++ b/src/http/ngx_http_upstream.c      Wed May 13 22:02:47 2020 +0800<br>@@ -2502,6 +2502,8 @@<br>         }<br><br> #endif<br>+<br>+        break;<br>     }<br><br> #if (NGX_HTTP_CACHE)<br></div><div><br></div><div>Thanks!</div></div>