Bladeren bron

outbound/doc: Fix logic error

Xenofon Karamanos 8 maanden geleden
bovenliggende
commit
485353fb5a
1 gewijzigde bestanden met toevoegingen van 1 en 2 verwijderingen
  1. 1 2
      src/modules/outbound/doc/outbound_admin.xml

+ 1 - 2
src/modules/outbound/doc/outbound_admin.xml

@@ -213,7 +213,7 @@ onreply_route {
 }
 
 failure_route[FAIL_OUTBOUND] {
-	if (t_branch_timeout() || !t_branch_replied()) {
+	if (t_branch_timeout() && !t_branch_replied()) {
 		send_reply("430", "Flow Failed");
 	}
 }
@@ -524,4 +524,3 @@ modparam("outbound", "flow_token_secret", "johndoessecretphrase")
 	</section>
 
 </chapter>
-