refactor(bonjour): privatize process error classification (#107724)

This commit is contained in:
Peter Steinberger
2026-07-14 12:00:55 -07:00
committed by GitHub
parent 61df1dbe7b
commit 68f336e496
+1 -1
View File
@@ -13,7 +13,7 @@ const CIAO_NETMASK_ASSERTION_MESSAGE_RE =
const CIAO_INTERFACE_ENUMERATION_FAILURE_RE = /\bUV_INTERFACE_ADDRESSES\b/u;
/** Known ciao process-level errors that OpenClaw handles specially. */
export type CiaoProcessErrorClassification =
type CiaoProcessErrorClassification =
| { kind: "netmask-assertion"; formatted: string }
| { kind: "interface-enumeration-failure"; formatted: string };