1
0
Fork 0

Add default to LEADER_TIMEOUT in case it's not defined (#2818)

* Add default to LEADER_TIMEOUT in case it's not defined

* Update Leader Timeout default
This commit is contained in:
Drashna Jael're 2018-05-15 19:33:53 -07:00 committed by Jack Humbert
parent 323cd35767
commit a572323f94
2 changed files with 6 additions and 3 deletions

View file

@ -18,6 +18,10 @@
#include "process_leader.h"
#ifndef LEADER_TIMEOUT
#define LEADER_TIMEOUT 300
#endif
__attribute__ ((weak))
void leader_start(void) {}