Summary: | ASTERISK-22622: Disabled CEL generates ERROR message on call hangup. | ||
Reporter: | Richard Mudgett (rmudgett) | Labels: | |
Date Opened: | 2013-10-01 12:09:33 | Date Closed: | 2013-10-02 16:57:41 |
Priority: | Major | Regression? | No |
Status: | Closed/Complete | Components: | CEL/General |
Versions: | 12.0.0-beta1 | Frequency of Occurrence | Constant |
Related Issues: | |||
Environment: | Attachments: | ||
Description: | If CEL is disabled in cel.conf, each channel that hangs up generates an error message:
{noformat} ERROR []: cel.c: 687 check_retire_linkedid: Something weird happened, couldn't find linkedid xxx {noformat} With CEL disabled the linked id's are not stored in the linkedids container. It probably would be best to check if CEL is enabled before generating the message. If CEL were enabled and then disabled, there could be linkedid's in the linkedids container. | ||
Comments: | By: Matt Jordan (mjordan) 2013-10-02 14:04:21.222-0500 That's due to CEL being registered for Stasis when disabled. The patch that disables all Stasis registrations when CEL is not enabled should resolve this. By: Richard Mudgett (rmudgett) 2013-10-02 16:57:41.607-0500 The commits resulting from the following review fixed the issue. Review: https://reviewboard.asterisk.org/r/2888/ |