I&#39;m using FreeSWITCH Version 1.2.7+git~20130307T181046Z~93e2a38efd with mod_http_cache and mod_httapi loaded with the default mod_http_cache configuration as follows:<br><br>configuration name=&quot;http_cache.conf&quot; description=&quot;HTTP GET cache&quot;&gt;<br>
  &lt;settings&gt;<br>    &lt;param name=&quot;max-urls&quot; value=&quot;10000&quot;/&gt;<br>    &lt;param name=&quot;location&quot; value=&quot;$${base_dir}/http_cache&quot;/&gt;<br>    &lt;param name=&quot;default-max-age&quot; value=&quot;86400&quot;/&gt;<br>
    &lt;param name=&quot;prefetch-thread-count&quot; value=&quot;8&quot;/&gt;<br>    &lt;param name=&quot;prefetch-queue-size&quot; value=&quot;100&quot;/&gt;<br>  &lt;/settings&gt;<br>&lt;/configuration&gt;<br><br>After placing a call with the following dialplan:<br>
<br>&lt;extension name=&quot;Adhearsion&quot;&gt;<br>  &lt;condition field=&quot;destination_number&quot; expression=&quot;.*$&quot;&gt;<br>    &lt;action application=&quot;playback&quot; data=&quot;<a href="http://s3.amazonaws.com/chibimp3/en/welcome.mp3">http://s3.amazonaws.com/chibimp3/en/welcome.mp3</a>&quot;/&gt;<br>
  &lt;/condition&gt;<br>&lt;/extension&gt;<br><br>it saves the following files to: /usr/local/freeswitch/storage/http_file_cache<br><br>d79f3de20148020fd468d1a16c578aba.mp3.mp3<br>d79f3de20148020fd468d1a16c578aba.mp3.meta<br>
<br>(note the double .mp3)<br><br>After I make another phone call<br><br>I get the following error:<br><br>2013-03-26 22:21:20.039296 [ERR] mod_shout.c:683 Error opening /usr/local/freeswitch/storage/http_file_cache/d79f3de20148020fd468d1a16c578aba.mp3<br>
2013-03-26 22:21:20.039296 [ERR] mod_shout.c:862 Error from mpg123: File access error. (code 22)<br>2013-03-26 22:21:20.039296 [ERR] mod_httapi.c:2763 Invalid cache file /usr/local/freeswitch/storage/http_file_cache/d79f3de20148020fd468d1a16c578aba.mp3 opening url <a href="http://s3.amazonaws.com/chibimp3/en/welcome.mp3">s3.amazonaws.com/chibimp3/en/welcome.mp3</a> Discarding file.<br>
<br>Note that from the log it looks like it is trying to open d79f3de20148020fd468d1a16c578aba.mp3 instead of d79f3de20148020fd468d1a16c578aba.mp3.mp3<br><br>Is this a bug in http_cache or am I doing something wrong?<br><br>
<br>