<div dir="ltr"><div><div>When setting max_fails=0 for all server directives used in upstream module. So for example:<br><br>upstream chat-servers {<br>  hash $arg_chatName;<br>  server chat-1 max_fails=0;<br>  server chat-2 max_fails=0;<br>  server chat-3 max_fails=0;<br>}<br><br></div>Assume a certain ?chatName=xxx is directed to chat-2 server, and this server fails. Do I get an error for that connection or does it try chat-3 server?<br><br></div>I want it not to go to the next sever but to just fail. Is this the correct config?<br></div>