sig_handlers: don't reload database on SIGHUP
The SIGHUP handler was used by the update process to make the main process re-read the database. We don't need this anymore, since the update takes place in a thread now.
This commit is contained in:
parent
a1434914a7
commit
f38aaa2bb7
|
@ -18,9 +18,6 @@
|
|||
*/
|
||||
|
||||
#include "sig_handlers.h"
|
||||
#include "playlist.h"
|
||||
#include "database.h"
|
||||
#include "update.h"
|
||||
#include "command.h"
|
||||
#include "signal_check.h"
|
||||
#include "log.h"
|
||||
|
@ -40,10 +37,6 @@ int handlePendingSignals(void)
|
|||
if (signal_is_pending(SIGHUP)) {
|
||||
DEBUG("got SIGHUP, rereading DB\n");
|
||||
signal_clear(SIGHUP);
|
||||
if (!isUpdatingDB()) {
|
||||
db_load();
|
||||
playlistVersionChange();
|
||||
}
|
||||
if (cycle_log_files() < 0)
|
||||
return COMMAND_RETURN_KILL;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue