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
This parameter defines how many seconds OpenSIPS should wait before retrying a TCP connection to the HEP destination after reaching the maximum number of failed attempts set by hep_max_retries.
if (hep_failed_retries >= hep_max_retries&& (now-hep_last_attempt) <hep_retry_cooldown) {
1749
+
LM_ERR("HEP send suppressed: too many failures (%d), in cooldown (%ld seconds left)\n", hep_failed_retries, hep_retry_cooldown- (now-hep_last_attempt));
1750
+
free_hep_send_resources(p, to, buf);
1751
+
goto end;
1752
+
}
1753
+
1754
+
hep_last_attempt=now;
1755
+
1729
1756
do {
1730
1757
if (msg_send(send_sock, hep_dest->transport, to, 0, buf, len, NULL) <0) {
0 commit comments