From 13a10add33e0818f32512b7ae2ff6deafee5d0ce Mon Sep 17 00:00:00 2001 From: Dushyant Bhatnagar Date: Fri, 29 Sep 2023 22:42:46 -0700 Subject: [PATCH] Reduce maximum allowed attachment bytes PiperOrigin-RevId: 569670721 --- openhtf/output/proto/mfg_event_converter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openhtf/output/proto/mfg_event_converter.py b/openhtf/output/proto/mfg_event_converter.py index dbf3ac1b1..25a8b941b 100644 --- a/openhtf/output/proto/mfg_event_converter.py +++ b/openhtf/output/proto/mfg_event_converter.py @@ -64,7 +64,7 @@ } _GIBI_BYTE_TO_BASE = 1 << 30 -MAX_TOTAL_ATTACHMENT_BYTES = int(1.9 * _GIBI_BYTE_TO_BASE) +MAX_TOTAL_ATTACHMENT_BYTES = int(0.9 * _GIBI_BYTE_TO_BASE) _LOGGER = logging.getLogger(__name__)