https://issues.apache.org/bugzilla/show_bug.cgi?id=50317
--- Comment #32 from [email protected] --- Following change fixes the issue completely for me, but it's not the fix for the root of this problem. However, it could give idea to someone with better knowledge to find out what's going on: diff --git a/modules/cache/cache_util.c b/modules/cache/cache_util.c index cb3d565..84edcd2 100644 --- a/modules/cache/cache_util.c +++ b/modules/cache/cache_util.c @@ -585,7 +598,7 @@ CACHE_DECLARE(int) ap_cache_check_freshness(cache_handle_t *h, * A lock that exceeds a maximum age will be deleted, and another * request gets to make a new lock and try again. */ - status = ap_cache_try_lock(conf, r, (char *)h->cache_obj->key); + status = ap_cache_try_lock(conf, r, NULL); if (APR_SUCCESS == status) { /* we obtained a lock, follow the stale path */ ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server, h->cache_obj->key is "accept-encodinghttp://localhost:80/examples/jsp/jsp2/el/basic-arithmetic.jsp?" while newly generated key is "http://localhost:80/examples/jsp/jsp2/el/basic-arithmetic.jsp?". -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
