From 4c2da349574869065a2014d775ef702f28c127a1 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 1 Apr 2013 14:29:29 +0400 Subject: [PATCH] daemon2: check if schema version changed --- update_daemon2.php | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/update_daemon2.php b/update_daemon2.php index fa64b302..c87f0c10 100755 --- a/update_daemon2.php +++ b/update_daemon2.php @@ -176,7 +176,9 @@ // It is unnecessary to start the fork loop if database is not ok. $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME); - if (!init_connection($link)) return; + if (!init_connection($link)) die("Can't initialize db connection.\n"); + + $schema_version = get_schema_version($link); db_close($link); @@ -193,6 +195,19 @@ if ($last_checkpoint + $spawn_interval < time()) { + /* Check if schema version changed */ + + $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME); + if (!init_connection($link)) die("Can't initialize db connection.\n"); + $test_schema_version = get_schema_version($link); + db_close($link); + + if ($test_schema_version != $schema_version) { + _debug("Expected schema version: $schema_version, got: $test_schema_version"); + _debug("Schema version changed while we were running, bailing out"); + exit(100); + } + check_ctimes(); reap_children(); -- 2.39.2