Skip to content

Commit

Permalink
Increase max size of elementSize.
Browse files Browse the repository at this point in the history
  • Loading branch information
syoyo committed Jul 21, 2024
1 parent 1b46af8 commit c751e52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/usdc-reader.hh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ struct USDCReaderConfig {
uint32_t kMaxFieldValuePairs = 4096;
uint32_t kMaxTokenLength = 4096; // Max length of `token`
uint32_t kMaxStringLength = 1024*1024*64; // Max length of `string` data
uint32_t kMaxElementSize = 512; // Max allowed value for `elementSize`
uint32_t kMaxElementSize = 8192; // Max allowed value for `elementSize`
size_t kMaxAllowedMemoryInMB = 1024*16; //Max allowed memory usage in [mb]

bool allow_unknown_prims = true;
Expand Down

0 comments on commit c751e52

Please sign in to comment.