summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/mysql.php10
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/mysql.php b/lib/mysql.php
index 66fe82f..f7ca3ed 100644
--- a/lib/mysql.php
+++ b/lib/mysql.php
@@ -53,10 +53,12 @@ function mysql_prepare_query($query) {
}
function show_warning_on_offline_slave() {
- $result = mysql_run_query("SHOW STATUS LIKE \"Slave_running\"");
- if (($result -> num_rows == 0) ||
- ($result -> fetch_assoc() ["Value"] != "ON")) {
- print "<div><font color=\"ff0000\">The replication slave is currently not running. The database might be outdated.</font></div>\n";
+ if (gethostname() != 'buildmaster.archlinux32.org') {
+ $result = mysql_run_query("SHOW STATUS LIKE \"Slave_running\"");
+ if (($result -> num_rows == 0) ||
+ ($result -> fetch_assoc() ["Value"] != "ON")) {
+ print "<div><font color=\"ff0000\">The replication slave is currently not running. The database might be outdated.</font></div>\n";
+ }
}
}