Commit f38aaa2b authored by Max Kellermann's avatar Max Kellermann

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.
parent a1434914
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment