let callers delete themselves on reload

This commit is contained in:
Anthony Minessale 2012-09-05 11:12:06 -05:00 committed by Ken Rice
parent 63be07707e
commit 0ccb94535a

View File

@ -2247,7 +2247,7 @@ static void fifo_caller_del(const char *uuid)
if (uuid) { if (uuid) {
sql = switch_mprintf("delete from fifo_callers where uuid='%q'", uuid); sql = switch_mprintf("delete from fifo_callers where uuid='%q'", uuid);
} else { } else {
sql = switch_mprintf("delete from fifo_callers", uuid); sql = switch_mprintf("delete from fifo_callers");
} }
fifo_execute_sql(sql, globals.sql_mutex); fifo_execute_sql(sql, globals.sql_mutex);
@ -4251,7 +4251,6 @@ static switch_status_t load_config(int reload, int del_all)
} }
} }
switch_mutex_unlock(globals.mutex); switch_mutex_unlock(globals.mutex);
fifo_caller_del(NULL);
} }