Run artifact

workspace/logs/20260812.191803.834Z_commonmark_build_codex.stderr.log

2026-08-12T19:19:27.620136Z ERROR codex_core::tools::router: error=apply_patch verification failed: Failed to find expected lines in /mnt/c/Users/barlo/projects/drydock/uat/CommonMark/runs/20260812.171514/build/commonmark/renderer/html.py:
        tag = re.match(r"<(?:https?://|mailto:)[^>]+>|</?[A-Za-z][A-Za-z0-9-]*(?:[ \t\r\n]+[^<>]*)?/?>", text[pos:], re.S)
        if tag:
            value = tag.group(0)
            if value.startswith("<") and re.match(r"<(?:https?://|mailto:)[^>]+>$", value):
                uri = value[1:-1]
                for escaped_key, escaped_value in escaped.items():
                    uri = uri.replace(escaped_key, "\\" + escaped_value)
                html_value = f'<a href="{escape(quote(uri, safe="/%#?:@-._~!$&\'()*+,;=", quote=True))}">{escape(uri, quote=False)}</a>'
            else:
                html_value = value
            out.append(plain(text[:pos])); out.append(protect(html_value))
            text = text[pos + len(value):]
            pos = 0
            continue
2026-08-12T19:19:39.551335Z ERROR codex_core::tools::router: error=apply_patch verification failed: Failed to find expected lines in /mnt/c/Users/barlo/projects/drydock/uat/CommonMark/runs/20260812.171514/build/commonmark/renderer/html.py:
        tag = re.match(r"<(?:https?://|mailto:)[^>]+>|</?[A-Za-z][A-Za-z0-9-]*(?:[ \t\r\n]+[^<>]*)?/?>", text[pos:], re.S)
        if tag:
            value = tag.group(0)
            if value.startswith("<") and re.match(r"<(?:https?://|mailto:)[^>]+>$", value):
                uri = value[1:-1]
                for escaped_key, escaped_value in escaped.items():
                    uri = uri.replace(escaped_key, "\\" + escaped_value)
                html_value = f'<a href="{escape(quote(uri, safe="/%#?:@-._~!$&\'()*+,;=", quote=True))}">{escape(uri, quote=False)}</a>'
            else:
                html_value = value
            out.append(plain(text[:pos])); out.append(protect(html_value))
            text = text[pos + len(value):]
            pos = 0
            continue
2026-08-12T19:19:55.412998Z ERROR codex_core::tools::router: error=apply_patch verification failed: Failed to find expected lines in /mnt/c/Users/barlo/projects/drydock/uat/CommonMark/runs/20260812.171514/build/commonmark/renderer/html.py:
            value = tag.group(0)
            if value.startswith("<") and re.match(r"<(?:https?://|mailto:)[^>]+>$", value):
                uri = value[1:-1]
                for escaped_key, escaped_value in escaped.items():
                    uri = uri.replace(escaped_key, "\\" + escaped_value)
                html_value = f'<a href="{escape(quote(uri, safe="/%#?:@-._~!$&\'()*+,;=", quote=True))}">{escape(uri, quote=False)}</a>'
            else:
                html_value = value
            out.append(plain(text[:pos])); out.append(protect(html_value))
            text = text[pos + len(value):]
2026-08-12T19:21:12.593449Z ERROR codex_core::tools::router: error=apply_patch verification failed: Failed to find expected lines in /mnt/c/Users/barlo/projects/drydock/uat/CommonMark/runs/20260812.171514/build/commonmark/parser/blocks.py:
        complete_tag = re.match(r"</?[A-Za-z][^>]*>\s*$", stripped) if "き://" not in stripped else None
        partial_tag = re.match(r"<[A-Za-z][^>]*$", stripped) and i + 1 < len(lines) and re.match(r"^\s*>", lines[i + 1])