diff options
-rw-r--r-- | plugin/cache/setup.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugin/cache/setup.go b/plugin/cache/setup.go index 7e5dfa174..f8278b872 100644 --- a/plugin/cache/setup.go +++ b/plugin/cache/setup.go @@ -241,6 +241,7 @@ func cacheParse(c *caddy.Controller) (*Cache, error) { return nil, fmt.Errorf("cache type for disable must be %q or %q", Success, Denial) } case "keepttl": + args := c.RemainingArgs() if len(args) != 0 { return nil, c.ArgErr() } |