chore: align error limit comment (#8896)

This commit is contained in:
Thibault Sottiaux
2026-01-08 05:30:33 -08:00
committed by GitHub
Unverified
parent e21ce6c5de
commit 5b022c2904
+1 -1
View File
@@ -22,7 +22,7 @@ use tokio::task::JoinError;
pub type Result<T> = std::result::Result<T, CodexErr>;
/// Limit UI error messages to a reasonable size while keeping useful context.
const ERROR_MESSAGE_UI_MAX_BYTES: usize = 2 * 1024; // 4 KiB
const ERROR_MESSAGE_UI_MAX_BYTES: usize = 2 * 1024; // 2 KiB
#[derive(Error, Debug)]
pub enum SandboxErr {