mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 05:01:07 +00:00
Increasing size of api log fields (mediumtext, 16MB)
This commit is contained in:
@ -219,8 +219,8 @@ public class ApiInstanceMetaDataProvider
|
||||
///////////////////////////////////////////
|
||||
// these are the lengths of a MySQL TEXT //
|
||||
///////////////////////////////////////////
|
||||
tableMetaData.getField("requestBody").withMaxLength(65_535).withBehavior(ValueTooLongBehavior.TRUNCATE_ELLIPSIS);
|
||||
tableMetaData.getField("responseBody").withMaxLength(65_535).withBehavior(ValueTooLongBehavior.TRUNCATE_ELLIPSIS);
|
||||
tableMetaData.getField("requestBody").withMaxLength(16_777_215).withBehavior(ValueTooLongBehavior.TRUNCATE_ELLIPSIS);
|
||||
tableMetaData.getField("responseBody").withMaxLength(16_777_215).withBehavior(ValueTooLongBehavior.TRUNCATE_ELLIPSIS);
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// internet doesn't agree on max-length for a URL, but let's go with ... 4K on query string //
|
||||
|
Reference in New Issue
Block a user