client: increase client mount timeout

This needs to be longer than the monclient hunt rate (currently 10s) so
that we succeed if we initially pick a down monitor.

Signed-off-by: Sage Weil <sage@newdream.net>
This commit is contained in:
Sage Weil 2010-07-08 10:49:51 -07:00
parent 89c7d920aa
commit a396fcb224

View File

@ -344,8 +344,8 @@ static struct config_option config_optionsp[] = {
OPTION(client_cache_stat_ttl, 0, OPT_INT, 0), // seconds until cached stat results become invalid
OPTION(client_cache_readdir_ttl, 0, OPT_INT, 1), // 1 second only
OPTION(client_use_random_mds, 0, OPT_BOOL, false),
OPTION(client_mount_timeout, 0, OPT_DOUBLE, 10.0), // retry every N seconds
OPTION(client_unmount_timeout, 0, OPT_DOUBLE, 10.0), // retry every N seconds
OPTION(client_mount_timeout, 0, OPT_DOUBLE, 30.0),
OPTION(client_unmount_timeout, 0, OPT_DOUBLE, 10.0),
OPTION(client_tick_interval, 0, OPT_DOUBLE, 1.0),
OPTION(client_hack_balance_reads, 0, OPT_BOOL, false),
OPTION(client_trace, 0, OPT_STR, 0),