<p>No it doesn't. </p>

<pre><code>/*
 * RPC command to reload dispatcher destination sets
 */
static void dispatcher_rpc_reload(rpc_t* rpc, void* ctx)
{
        if(!ds_db_url.s) {
                if (ds_load_list(dslistfile)!=0) {
                        rpc->fault(ctx, 500, "Reload Failed");
                        return;
                }
        } else {
                if(ds_reload_db()<0) {
                        rpc->fault(ctx, 500, "Reload Failed");
                        return;
                }
        }
        return;
}
</code></pre>

<p>From dispatcher.c - notice the reload from table?</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">—<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/kamailio/kamailio/pull/667#issuecomment-225143980">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe/AF36Zbol9gugeIoGLnHeXkUZ3a0qBMwrks5qKTZhgaJpZM4IyyQx">mute the thread</a>.<img alt="" height="1" src="https://github.com/notifications/beacon/AF36ZWiVB3VqSn8A9dgpn7d0Hh10TKsQks5qKTZhgaJpZM4IyyQx.gif" width="1" /></p>
<div itemscope itemtype="http://schema.org/EmailMessage">
<div itemprop="action" itemscope itemtype="http://schema.org/ViewAction">
  <link itemprop="url" href="https://github.com/kamailio/kamailio/pull/667#issuecomment-225143980"></link>
  <meta itemprop="name" content="View Pull Request"></meta>
</div>
<meta itemprop="description" content="View this Pull Request on GitHub"></meta>
</div>