(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>