Hello, <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; I have seen many app_queue.c case problems, related to realtime. When we use realtime queues, they are not loaded in memory until a call enters that queue (via Queue() dialplan application) or we do a &#39;show queue &lt;realtime-queue&gt;&#39;, the problem is that while doing a &#39;show queue &lt;a&gt;&#39; that queue (&lt;a&gt;) is found case insensitive (in realtime) so:
<br>If we have a queue named Prueba on mysql, and we do a: &#39;show queue PRUEBA&#39; then the queue Prueba is loaded in memory as &#39;PRUEBA&#39; and should be loaded as &#39;Prueba&#39; as is defined in mysql. Then manager actions compare the received parameter &#39;Queue:&#39; case sensitive (strcmp) and not (strcasecmp) so the queue Prueba loaded as PRUEBA is never recognized on actions.
<br>Another problem I have seen is that while loading queues.conf if we have a queue named Prueba and a queue named PRUEBA on CLI commands we can&#39;t reach PRUEBA because the autocomplete and the CLI command finds Prueba first or PRUEBA and we are not able to do:
<br>show queue Prueba<br>AND<br>show queue PRUEBA<br>Returning a reply for this command with different results.<br><br>I&#39;m doing a patch for this issue but the question is: Queues should be case sensitive or insensitive?
<br><br>The solution would be to use always strcmp or strcasecmp.<br><br>Thanks in advanced.<br><br>eliel<br><br>