Commit c9b32e15 authored by Nils Goroll's avatar Nils Goroll

lift artificial limits on read access to request attributes

I see absolutely no reason why we shouldn't allow read access outside
vcl_recv

Merges #2447
parent bf6d14d9
......@@ -270,7 +270,7 @@ sp_variables = [
),
('req.storage',
'STEVEDORE',
('recv',),
('client',),
('recv',), """
The storage backend to use to save this request body.
"""
......@@ -336,7 +336,7 @@ sp_variables = [
),
('req.hash_ignore_busy',
'BOOL',
('recv',),
('client',),
('recv',), """
Ignore any busy object during cache lookup. You
would want to do this if you have two server looking
......@@ -345,7 +345,7 @@ sp_variables = [
),
('req.hash_always_miss',
'BOOL',
('recv',),
('client',),
('recv',), """
Force a cache miss for this request. If set to true
Varnish will disregard any existing objects and
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment