Auto-commit local changes before build (2026-01-06 14:21:05)

This commit is contained in:
Ivo Oskamp 2026-01-06 14:21:05 +01:00
parent e23e194e40
commit 86ac67a59e

View File

@ -79,9 +79,7 @@ def _extract_configuration_job_overall_message(html: str) -> Optional[str]:
for line in text.split("\n"):
# Example:
# 26-12-2025 10:00:23 Warning Skipping server certificate backup because encryption is disabled
# 6-1-2026 10:00:16 Warning Skipping credentials backup because encryption is disabled
# Veeam can format dates as either zero-padded (06-01-2026) or non-padded (6-1-2026).
if re.match(r"^\d{1,2}-\d{1,2}-\d{4}\s+\d{2}:\d{2}:\d{2}\s+(Warning|Failed|Error)\b", line):
if re.match(r"^\d{2}-\d{2}-\d{4}\s+\d{2}:\d{2}:\d{2}\s+(Warning|Failed|Error)\b", line):
wanted_lines.append(line)
if not wanted_lines: