You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (!preg_match('/^d\d{8}$/', $cformat) || !preg_match('/^\d{4}-\d{2}-\d{2}$/', $boundary_date)) {
369
-
cacti_log("SYSLOG ERROR: Derived partition values failed format validation for '$table'; rotation aborted", false, 'SYSLOG');
368
+
cacti_log("SYSLOG ERROR: Derived partition values failed format validation for '$table'; leaving writes in dMaxValue until maintenance recovers", false, 'SYSLOG');
370
369
371
370
returnfalse;
372
371
}
@@ -395,7 +394,7 @@ function syslog_partition_create($table, $time = null) {
if (!cacti_sizeof($create_syntax) || empty($create_syntax['Create Table'])) {
398
-
cacti_log("SYSLOG ERROR: SHOW CREATE TABLE returned no rows for '$table'; partition rotation aborted", false, 'SYSLOG');
397
+
cacti_log("SYSLOG ERROR: SHOW CREATE TABLE returned no rows for '$table'; leaving writes in dMaxValue until maintenance recovers", false, 'SYSLOG');
399
398
400
399
returnfalse;
401
400
}
@@ -411,7 +410,7 @@ function syslog_partition_create($table, $time = null) {
411
410
PARTITION $cformat VALUES LESS THAN ($boundary_epoch),
412
411
PARTITION dMaxValue VALUES LESS THAN MAXVALUE)");
413
412
} else {
414
-
cacti_log("SYSLOG ERROR: Unable to determine partition expression (neither TO_DAYS nor UNIX_TIMESTAMP) for '$table'; rotation aborted", false, 'SYSLOG');
413
+
cacti_log("SYSLOG ERROR: Unable to determine partition expression (neither TO_DAYS nor UNIX_TIMESTAMP) for '$table'; leaving writes in dMaxValue until maintenance recovers", false, 'SYSLOG');
0 commit comments