Hi Guys<div><br></div><div>I encountered this issue in two different environment(env1 and env2). </div><div>The sample code is like:</div><div>in vcl_fetch()</div><div><br></div><div><div> else if (req.url ~ "^/tables/\w{6}/summary.js") {</div>
<div> if (req.http.Set-Cookie !~ " u=\w") {</div><div> unset beresp.http.Set-Cookie;</div><div> set beresp.ttl = 2h;</div><div> set beresp.grace = 22h;</div><div> return(deliver);</div><div>
} else {</div><div> return(pass);</div><div> }</div><div> }</div></div><div><br></div><div>In env1, the request like <a href="http://mytest.com/api/v2/tables/vyulrh/read.jsaml" target="_blank">http://mytest.com/api/v2/tables/vyulrh/read.jsaml</a> can enter lookup and then enter fetch to create a new cache entry. Next time, the same request will hit cache and do not do fetch anymore</div>
<div>In env2, the same request enter and go into vcl_fetch, the regex will fail and can not enter deliver, so the resp will be sent to end user without cache creating.</div><div><br></div><div>I'm not sure if there is somebody has the same issue. Is it platform related ?</div>
<div><br></div><div><br></div><div>R</div>