FS-477 default to 10 seconds to avoid noticeable impact on current users until variable timeout support re-added
This commit is contained in:
parent
31a181a4b5
commit
8b6fd66f34
|
@ -2088,7 +2088,7 @@ static switch_status_t load_skinny_config(void)
|
|||
profile->pool = profile_pool;
|
||||
profile->name = switch_core_strdup(profile->pool, profile_name);
|
||||
profile->auto_restart = SWITCH_TRUE;
|
||||
profile->digit_timeout = 2000; /* 2 seconds */
|
||||
profile->digit_timeout = 10000; /* 10 seconds */
|
||||
switch_mutex_init(&profile->sql_mutex, SWITCH_MUTEX_NESTED, profile->pool);
|
||||
switch_mutex_init(&profile->listener_mutex, SWITCH_MUTEX_NESTED, profile->pool);
|
||||
switch_mutex_init(&profile->sock_mutex, SWITCH_MUTEX_NESTED, profile->pool);
|
||||
|
|
Loading…
Reference in New Issue