| Summary: | ASTERISK-15390: Updating field in realtime queue table does not take effect | ||||
| Reporter: | uros gaber (urosh) | Labels: | |||
| Date Opened: | 2010-01-03 19:34:16.000-0600 | Date Closed: | |||
| Priority: | Minor | Regression? | No | ||
| Status: | Open/New | Components: | Applications/app_queue | ||
| Versions: | Frequency of Occurrence | ||||
| Related Issues: | 
 | ||||
| Environment: | Attachments: | ||||
| Description: | Hi. I noticed bug with realtime queue. The problem is when I change interface from example(SIP/218 to SIP/219) asterisk still shows member SIP/218 as in that queue. The only posible workaround is to change uniqueid. Then it registers the change. Here is my table from mysql. CREATE TABLE `voip`.`conf_queue_member` ( `uniqueid` int(11) NOT NULL auto_increment, `queue_name` varchar(200) default NULL, `membername` varchar(120) default NULL, `interface` varchar(100) default NULL, `penalty` int(11) default '0', `paused` int(11) default '0', `parent_num` varchar(100) default NULL, PRIMARY KEY (`uniqueid`), KEY `conf_queue_member_queue_name` (`queue_name`) ) ENGINE=MyISAM AUTO_INCREMENT=40 DEFAULT CHARSET=utf8 | ||||
| Comments: | |||||