Skip to content

Commit

Permalink
Reduce maximum allowed attachment bytes
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 569670721
  • Loading branch information
dbhatman authored and Copybara-Service committed Oct 7, 2023
1 parent c245547 commit dd4ca27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openhtf/output/proto/mfg_event_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__)

Expand Down

0 comments on commit dd4ca27

Please sign in to comment.