Hi there guys. I can't find the answer to my question - why only 3 items in this request
curl -XPUT http://localhost:8000/address/groups/[email protected]/[email protected] curl -XPUT http://localhost:8000/address/groups/[email protected]/[email protected] curl -XPUT http://localhost:8000/address/groups/[email protected]/[email protected] curl -XPUT http://localhost:8000/address/groups/[email protected]/[email protected] curl -XPUT http://localhost:8000/address/groups/[email protected]/[email protected] and more 50 like this but only first 3 was added D:\mail\curl\bin>curl -XGET http://localhost:8000/address/groups/[email protected] ["[email protected]","[email protected]","[email protected]"] after this i remove one D:\mail\curl\bin>curl -XGET http://localhost:8000/address/groups/[email protected] ["[email protected]","[email protected]"] so i try curl -XPUT http://localhost:8000/address/groups/[email protected]/[email protected] and its worked D:\mail\curl\bin>curl -XGET http://localhost:8000/address/groups/[email protected] ["[email protected]","[email protected]","[email protected]"] but more than 3 in group tell me error 500 D:\mail\curl\bin>curl -XPUT http://localhost:8000/address/groups/[email protected]/[email protected] {"statusCode":500,"type":"ServerError","message":"Unable to update mapping","details":null} So tell me where i need configurate limits?
