Hi, we could reproduce the issue. When using instructions as
xlog("$http_hdr(Content-Type)");
the PV's internal name is parsed at runtime, and the PV API has been initialized already. When using
$var(ct) = $http_hdr(Content-Type)
it's parsed at start time, before the API was initialized. I sent a patch that does the init sooner, and should fix the issue