diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-11-29 23:00:42 -0800 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-11-29 23:00:42 -0800 |
commit | 15b856420c99710e39bf13271860502887c9eb9a (patch) | |
tree | d4016c7220e68838e5032888e4ff747a9cffcec7 /system/db/config.go | |
parent | 9cbb99d6114e2f5a86d8dcd0cdec582aeaf9cce1 (diff) |
testing check for cache invalidation to after values are decoded
Diffstat (limited to 'system/db/config.go')
-rw-r--r-- | system/db/config.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/system/db/config.go b/system/db/config.go index 4957d52..edd4234 100644 --- a/system/db/config.go +++ b/system/db/config.go @@ -35,6 +35,7 @@ func SetConfig(data url.Values) error { } // check for "invalidate" value to reset the Etag + fmt.Println(cfg.CacheInvalidate) if len(cfg.CacheInvalidate) > 0 && cfg.CacheInvalidate[0] == "invalidate" { cfg.Etag = NewEtag() } |