Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' into fis-release
Browse files Browse the repository at this point in the history
  • Loading branch information
madhavemuri authored Sep 2, 2022
2 parents 30af547 + f60c3f8 commit bf11c69
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions rpc/conn.c
Original file line number Diff line number Diff line change
Expand Up @@ -1454,8 +1454,9 @@ M0_INTERNAL void m0_rpc_conn_ha_timer_stop(struct m0_rpc_conn *conn)
if (m0_sm_timer_is_armed(&conn->c_ha_timer)) {
M0_LOG(M0_DEBUG, "Cancelling HA timer; rpc conn=%p", conn);
m0_sm_timer_cancel(&conn->c_ha_timer);
} else if (M0_IN(conn->c_ha_timer.tr_timer.t_state,
(M0_TIMER_STOPPED, M0_TIMER_INITED)))
}
if (M0_IN(conn->c_ha_timer.tr_timer.t_state,
(M0_TIMER_STOPPED, M0_TIMER_INITED)))
m0_sm_timer_fini(&conn->c_ha_timer);
}

Expand Down

0 comments on commit bf11c69

Please sign in to comment.