Skip to content

Commit

Permalink
vmod_debug: Fix v1l workspace for reembarking transport demo
Browse files Browse the repository at this point in the history
Clearly the v1l can not live on the worker stack.

Noticed thanks to vtest.

Ref 0cfd6cd
  • Loading branch information
nigoroll committed Dec 13, 2024
1 parent 2c761ac commit febfce2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vmod/vmod_debug_transports.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ dbg_deliver(struct req *req, int sendbody)

CHECK_OBJ_NOTNULL(req->wrk, WORKER_MAGIC);

v1l = V1L_Open(req->wrk->aws, &req->sp->fd, req->vsl,
v1l = V1L_Open(req->ws, &req->sp->fd, req->vsl,
req->t_prev + SESS_TMO(req->sp, send_timeout),
cache_param->http1_iovs);

Expand Down

0 comments on commit febfce2

Please sign in to comment.