Commit 298ffb63 authored by Martin Blix Grydeland's avatar Martin Blix Grydeland

Relax an assertion for the IMS update candidate object

The streaming fetch of an object can fail between lookup time and when
we actually use it. Relax this assertion.

Fixes: #1647
parent d057bf95
......@@ -356,7 +356,7 @@ cnt_lookup(struct worker *wrk, struct req *req)
switch (wrk->handling) {
case VCL_RET_DELIVER:
if (boc != NULL) {
AZ(oc->flags & (OC_F_FAILED|OC_F_PASS));
AZ(oc->flags & OC_F_PASS);
AZ(oc->exp_flags & OC_EF_DYING);
AZ(boc->busyobj);
VBF_Fetch(wrk, req, boc, oc, VBF_BACKGROUND);
......
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