triflux 10.9.24 → 10.9.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -15,7 +15,7 @@ const REQUIRED_TOOLS = ["codex", "codex-reply"];
|
|
|
15
15
|
|
|
16
16
|
export { CODEX_MCP_EXECUTION_EXIT_CODE, CODEX_MCP_TRANSPORT_EXIT_CODE };
|
|
17
17
|
export const DEFAULT_CODEX_MCP_TIMEOUT_MS = 10 * 60 * 1000;
|
|
18
|
-
export const DEFAULT_CODEX_MCP_BOOTSTRAP_TIMEOUT_MS =
|
|
18
|
+
export const DEFAULT_CODEX_MCP_BOOTSTRAP_TIMEOUT_MS = 120 * 1000;
|
|
19
19
|
|
|
20
20
|
/**
|
|
21
21
|
* Codex MCP transport/bootstrap 계층 오류
|
package/package.json
CHANGED
package/scripts/tfx-route.sh
CHANGED
|
@@ -1716,12 +1716,8 @@ FALLBACK_EOF
|
|
|
1716
1716
|
if [[ "$exit_code" -eq 0 ]]; then
|
|
1717
1717
|
codex_transport_effective="mcp"
|
|
1718
1718
|
elif [[ "$exit_code" -eq "$CODEX_MCP_TRANSPORT_EXIT_CODE" && "$TFX_CODEX_TRANSPORT" == "auto" ]]; then
|
|
1719
|
-
echo "[tfx-route] Codex MCP bootstrap 실패(exit=${exit_code}).
|
|
1720
|
-
|
|
1721
|
-
: > "$STDERR_LOG"
|
|
1722
|
-
exit_code=0
|
|
1723
|
-
run_codex_exec "$FULL_PROMPT" "$use_tee" || exit_code=$?
|
|
1724
|
-
codex_transport_effective="exec-fallback"
|
|
1719
|
+
echo "[tfx-route] Codex MCP bootstrap 실패(exit=${exit_code}). exec fallback 비활성(stdin 블록 위험)." >&2
|
|
1720
|
+
codex_transport_effective="mcp-failed"
|
|
1725
1721
|
else
|
|
1726
1722
|
codex_transport_effective="mcp"
|
|
1727
1723
|
fi
|