[master] b3a2823 Update graph

Tollef Fog Heen tfheen at varnish-cache.org
Mon Aug 5 11:16:19 CEST 2013


commit b3a2823cfbb6c8eb326ed891b4a39075cd05ef0b
Author: Federico Schwindt <fgsch at lodoss.net>
Date:   Mon Aug 5 11:10:35 2013 +0200

    Update graph
    
    Make it clearer that vcl_hash is called on lookup, pass and pipe.

diff --git a/bin/varnishd/cache/cache_req_fsm.c b/bin/varnishd/cache/cache_req_fsm.c
index 5ee6d14..ec7505c 100644
--- a/bin/varnishd/cache/cache_req_fsm.c
+++ b/bin/varnishd/cache/cache_req_fsm.c
@@ -762,7 +762,7 @@ cnt_restart(const struct worker *wrk, struct req *req)
 DOT subgraph xcluster_recv {
 DOT	recv [
 DOT		shape=record
-DOT		label="{cnt_recv:|{vcl_recv\{\}|req.*}|{<pipe>pipe?|<pass>pass?|<error>error?|<lookup>lookup?}}"
+DOT		label="{cnt_recv:|{vcl_recv\{\}|req.*}|{<pass>pass?|<lookup>lookup?|<pipe>pipe?|<error>error?}}"
 DOT	]
 DOT }
 DOT subgraph xcluster_hash {
@@ -771,12 +771,14 @@ DOT		shape=record
 DOT		label="{cnt_recv:|{vcl_hash\{\}|req.*}}"
 DOT	]
 DOT }
-DOT recv:pipe -> pipe [style=bold,color=orange]
-DOT recv:pass -> pass [style=bold,color=red]
+DOT recv:pipe -> hash [style=bold,color=orange]
+DOT recv:pass -> hash [style=bold,color=red]
 #DOT recv:error -> err_recv
 #DOT err_recv [label="ERROR",shape=plaintext]
 DOT recv:lookup -> hash [style=bold,color=green]
-DOT hash -> lookup [label="hash",style=bold,color=green]
+DOT hash -> lookup [style=bold,color=green]
+DOT hash -> pipe [style=bold,color=orange]
+DOT hash -> pass [style=bold,color=red]
  */
 
 static enum req_fsm_nxt



More information about the varnish-commit mailing list