Closed
Description
#271 added a length limit to the commit message, but it's still too short. I experimentally discovered that Kudu gives a 404 response for any URLs that have a query string longer than 2048 characters. The 7000 limit added in #271 is thus still much too long, it needs to be short enough that it, along with the rest of the query parameters and encoded JSON object, add up to less than 2048 characters. Guessing it should be less than 1000, since the trimming is done before the URL encoding which could more than double the effective length (" " becomes "%20", etc.).
Activity