Merge pull request #325 from shilpa24balaji/3.12_p3b

Update retry time in connection-health-file
This commit is contained in:
shilpa24balaji
2019-10-25 11:56:33 -07:00
committed by GitHub

View File

@@ -214,6 +214,13 @@ int update_backoff_delay (backoff_timer_t *timer)
static void backoff_delay (backoff_timer_t *timer)
{
update_backoff_delay (timer);
// Update retry time for conn progress
if(timer->count == timer->max_count)
{
start_conn_in_progress();
}
ParodusInfo("Waiting with backoffRetryTime %d seconds\n", timer->delay);
sleep (timer->delay);
}