traeak opened a new pull request, #13700: URL: https://github.com/apache/trafficserver/pull/13700
ATS 9.2 split `/path;params` into separate path and params parts and built the cache key as path + `;` + params. That parsing was removed, so `;params` now stays in the path. The 9.2 key function still added its own `;`, so `/a;b=1` was hashed as `/a;b=1;`. 9.2 never produced that key, so lookups for these URLs could never find objects that 9.2 had cached. This PR adds the separator only when the raw path has no literal `;`. An escaped `%3B` still counts as no params, just as in 9.2. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
