Optimize database Error RC2

Read 4553 times
When clicking on the Optimize database link under Utilities I get a error

http://prntscr.com/pu2jy
My Auto DJ
Orlando, FL USA
Quality SHOUTcast Hosting http://myautodj.com
SHOUTcast Widgets http://shoutcastwidgets.com
Hmm... if you open /usr/local/centovacast/etc/web.d/cc-interface.conf, do you have two stanzas that look like these?

Code: [Select]
# configure pubsub publisher location
location /publish {
...
}

# configure pubsub subscriber location
location /activity {
...
}

The error in the screenshot shows that nginx is reporting those locations as being missing... which shouldn't be possible, as the latest "stock" cc-interface.conf definitely includes them.

(1) I updated one server, went through everything to check for errors, when I clicked the Optimize Database Link I got the error
(2) Went to server 2, clicked the same link with no error
(3) Updated server 2 to RC2, went back to that link and it displayed the error only after the update
 

--- here is that section of  /usr/local/centovacast/etc/web.d/cc-interface.conf

<code>
   # configure pubsub publisher location
   location /publish {
         allow 127.0.0.1;
         deny all;

         set $push_channel_id $arg_id;
         push_publisher;

         push_store_messages on;
         push_message_timeout 15m;
         push_max_message_buffer_length 10;
   }

   # configure pubsub subscriber location
   location /activity {
         push_subscriber;

         push_subscriber_concurrency broadcast;
         push_authorized_channels_only on;
         set $push_channel_id $arg_id;
         default_type text/plain;
   }
</code>
My Auto DJ
Orlando, FL USA
Quality SHOUTcast Hosting http://myautodj.com
SHOUTcast Widgets http://shoutcastwidgets.com
Also getting error on my setup

See Screenshot
http://prntscr.com/qcp04

Dave
Just an update to confirm that we've tracked this down... unfortunately it's a tricky one to properly fix as it will likely require patching nginx itself.  We should have an interim workaround for the next build though.