[master] 1d5e5f0 Handle OBJ_STICKY in flags

Federico G. Schwindt fgsch at lodoss.net
Wed Jan 6 00:47:17 CET 2016


commit 1d5e5f050fb84cf754bf3782a081ef490d452a2c
Author: Federico G. Schwindt <fgsch at lodoss.net>
Date:   Tue Jan 5 23:25:07 2016 +0000

    Handle OBJ_STICKY in flags

diff --git a/bin/varnishd/mgt/mgt_param.c b/bin/varnishd/mgt/mgt_param.c
index 2a52709..908643f 100644
--- a/bin/varnishd/mgt/mgt_param.c
+++ b/bin/varnishd/mgt/mgt_param.c
@@ -575,6 +575,10 @@ MCF_DumpRstParam(void)
 				printf("%sonly_root", q);
 				q = ", ";
 			}
+			if (pp->flags & OBJ_STICKY) {
+				printf("%sobj_sticky", q);
+				q = ", ";
+			}
 			printf("\n");
 		}
 		printf("\n");



More information about the varnish-commit mailing list