Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Enable asymmetric router failure detection by default
Change-Id: I17be5f605e76c256fff4eebabe3a2781ecad8074
Signed-off-by: Christopher J. Morrone <morrone2@llnl.gov>
  • Loading branch information
morrone committed Sep 20, 2012
1 parent 4d7c6d1 commit 872bfc4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lnet/lnet/router.c
Expand Up @@ -77,15 +77,15 @@ static int check_routers_before_use = 0;
CFS_MODULE_PARM(check_routers_before_use, "i", int, 0444,
"Assume routers are down and ping them before use");

static int avoid_asym_router_failure = 0;
static int avoid_asym_router_failure = 1;
CFS_MODULE_PARM(avoid_asym_router_failure, "i", int, 0644,
"Avoid asymmetrical failures: reserved, use at your own risk");

static int dead_router_check_interval = 0;
static int dead_router_check_interval = 60;
CFS_MODULE_PARM(dead_router_check_interval, "i", int, 0644,
"Seconds between dead router health checks (<= 0 to disable)");

static int live_router_check_interval = 0;
static int live_router_check_interval = 60;
CFS_MODULE_PARM(live_router_check_interval, "i", int, 0644,
"Seconds between live router health checks (<= 0 to disable)");

Expand Down

0 comments on commit 872bfc4

Please sign in to comment.