File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
app/code/Magento/PageCache/etc Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -57,8 +57,8 @@ sub vcl_recv {
5757 return (pass );
5858 }
5959
60- # Bypass shopping cart, checkout and search requests
61- if (req.url ~ "/checkout" || req.url ~ "/catalogsearch" ) {
60+ # Bypass shopping cart and checkout
61+ if (req.url ~ "/checkout" ) {
6262 return (pass );
6363 }
6464
Original file line number Diff line number Diff line change @@ -58,8 +58,8 @@ sub vcl_recv {
5858 return (pass );
5959 }
6060
61- # Bypass shopping cart, checkout and search requests
62- if (req.url ~ "/checkout" || req.url ~ "/catalogsearch" ) {
61+ # Bypass shopping cart and checkout
62+ if (req.url ~ "/checkout" ) {
6363 return (pass );
6464 }
6565
Original file line number Diff line number Diff line change @@ -62,8 +62,8 @@ sub vcl_recv {
6262 return (pass );
6363 }
6464
65- # Bypass shopping cart, checkout and search requests
66- if (req.url ~ "/checkout" || req.url ~ "/catalogsearch" ) {
65+ # Bypass shopping cart and checkout
66+ if (req.url ~ "/checkout" ) {
6767 return (pass );
6868 }
6969
You can’t perform that action at this time.
0 commit comments