1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 09:15:55 +00:00

unify houskeeping stuff, increase spawn interval

This commit is contained in:
Andrew Dolgov
2013-04-24 14:54:59 +04:00
parent 654650857f
commit e2cf81e214
6 changed files with 25 additions and 46 deletions

View File

@@ -170,14 +170,15 @@
"Maybe another daemon is already running.\n");
}
init_plugins();
$schema_version = get_schema_version();
if ($schema_version != SCHEMA_VERSION) {
die("Schema version is wrong, please upgrade the database.\n");
}
// Protip: children close shared database handle when terminating, it's a bad idea to
// do database stuff on main process from now on.
while (true) {
// Since sleep is interupted by SIGCHLD, we need another way to
@@ -190,17 +191,6 @@
}
if ($last_checkpoint + $spawn_interval < time()) {
/* Check if schema version changed */
$test_schema_version = get_schema_version();
if ($test_schema_version != $schema_version) {
echo "Expected schema version: $schema_version, got: $test_schema_version\n";
echo "Schema version changed while we were running, bailing out\n";
exit(100);
}
check_ctimes();
reap_children();