You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If any of the parameter or object properties of type string has maxLength = 2GB, mock will try to create a large string. There should be a limit on the size of the string being generated. For example:
SwagMock will try to call Chance.string({ length:2147483647, alpha:true }) which results in a very large alpha string getting created. I provided a workaround by adding following patch:
If any of the parameter or object properties of type string has maxLength = 2GB, mock will try to create a large string. There should be a limit on the size of the string being generated. For example:
"account_note": { "type": "string", "maxLength": 2147483647, "example": "" }
SwagMock will try to call Chance.string({ length:2147483647, alpha:true }) which results in a very large alpha string getting created. I provided a workaround by adding following patch:
The text was updated successfully, but these errors were encountered: