Commit a8481d09 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp
parents 38415a2a 87665049
...@@ -21,7 +21,7 @@ String concatenation did not have an operator previously, but this has now been ...@@ -21,7 +21,7 @@ String concatenation did not have an operator previously, but this has now been
becomes becomes
import std; import std;
std.log "log something"; std.log("log something");
You only need to import std once. You only need to import std once.
......
...@@ -52,10 +52,10 @@ The following options are available: ...@@ -52,10 +52,10 @@ The following options are available:
-k num Only show the first num log records. -k num Only show the first num log records.
-m tag:regex only list transactions where tag matches regex. Multiple -m tag:regex only list transactions where tag matches regex. Multiple
-m options are AND-ed together. Can not be combined with -O -m options are AND-ed together.
-n Specifies the name of the varnishd instance to get logs from. If -n is not -n Specifies the name of the varnishd instance to get logs from. If
specified, the host name is used. -n is not specified, the host name is used.
-o Ignored for compatibility with earlier versions. -o Ignored for compatibility with earlier versions.
......
...@@ -485,8 +485,12 @@ vcl_fetch ...@@ -485,8 +485,12 @@ vcl_fetch
error code [reason] error code [reason]
Return the specified error code to the client and abandon the request. Return the specified error code to the client and abandon the request.
pass hit_for_pass
Switch to pass mode. Control will eventually pass to vcl_pass. Pass in fetch. This will create a hit_for_pass object. Note that
the TTL for the hit_for_pass object will be set to what the
current value of beresp.ttl. Control will be handled to
vcl_deliver on the current request, but subsequent requests will
go directly to vcl_pass based on the hit_for_pass object.
restart restart
Restart the transaction. Increases the restart counter. If the number Restart the transaction. Increases the restart counter. If the number
......
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