Closed duffn closed 3 weeks ago
This adds the ok keyword. ok is a valid VCL keyword: https://www.varnish-software.com/developers/tutorials/varnish-builtin-vcl/#14-vcl_fini
ok
The update results in no longer calling ok a syntax error in a block such as this.
sub vcl_fini { return (ok); }
Thanks!
This adds the
ok
keyword.ok
is a valid VCL keyword: https://www.varnish-software.com/developers/tutorials/varnish-builtin-vcl/#14-vcl_finiThe update results in no longer calling
ok
a syntax error in a block such as this.