diff options
Diffstat (limited to 'checks/mysql_repl')
-rw-r--r-- | checks/mysql_repl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checks/mysql_repl b/checks/mysql_repl index 0b1cf74..ce4be4e 100644 --- a/checks/mysql_repl +++ b/checks/mysql_repl @@ -42,7 +42,7 @@ def check_mysql_repl_status(item, params, info): return (CRIT, 'Slave %s is not(!!) running: %s' % (params[0], values['Last_%s_Error' % params[0]]), perfdata) except Exception, e: - return (UNKNOWN, "mysql_repl check failed: %", e.message) + return (UNKNOWN, "mysql_repl check failed: %s" % e.message) check_info["mysql_repl"] = { |