mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 12:16:00 +00:00
app_queue: Set correct value by default for shared_lastcall
There a long history here: In commitdd1e62c095
has introduce by default shared_lastcall = true by default but this now only happen is there not [general] directive in queues.conf After that, the commit4b50e3f1ee
fix the sample file. We'll need to keep the same setting if there a general or not section in configuration file since the shared_lastcall is by a long time in sample files as default value to 'no'. Change-Id: Id44faec370136df8d57902b453ad4059ed21b94c
This commit is contained in:
@@ -1478,7 +1478,7 @@ static int autofill_default = 1;
|
|||||||
static int montype_default = 0;
|
static int montype_default = 0;
|
||||||
|
|
||||||
/*! \brief queues.conf [general] option */
|
/*! \brief queues.conf [general] option */
|
||||||
static int shared_lastcall = 1;
|
static int shared_lastcall = 0;
|
||||||
|
|
||||||
/*! \brief queuesrules.conf [general] option */
|
/*! \brief queuesrules.conf [general] option */
|
||||||
static int realtime_rules = 0;
|
static int realtime_rules = 0;
|
||||||
|
@@ -59,7 +59,7 @@ monitor-type = MixMonitor
|
|||||||
; respect the wrapuptime of another queue for a shared member.
|
; respect the wrapuptime of another queue for a shared member.
|
||||||
; The default value is no.
|
; The default value is no.
|
||||||
;
|
;
|
||||||
;shared_lastcall=no
|
;shared_lastcall=yes
|
||||||
;
|
;
|
||||||
; Negative_penalty_invalid will treat members with a negative penalty as logged off
|
; Negative_penalty_invalid will treat members with a negative penalty as logged off
|
||||||
;
|
;
|
||||||
|
Reference in New Issue
Block a user