Skip to content

Commit

Permalink
Merge pull request #1045 from bastelfreak/fastcgi_cache_use_stale
Browse files Browse the repository at this point in the history
change fastcgi_cache_use_stale default false->undef
  • Loading branch information
hunner authored Mar 8, 2017
2 parents caeda2d + 3a1ee66 commit 6f166e0
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
$fastcgi_cache_levels = '1',
$fastcgi_cache_max_size = '500m',
$fastcgi_cache_path = false,
$fastcgi_cache_use_stale = false,
$fastcgi_cache_use_stale = undef,
$gzip = 'on',
$gzip_buffers = undef,
$gzip_comp_level = 1,
Expand Down Expand Up @@ -210,9 +210,6 @@
if ($fastcgi_cache_key != false) {
validate_string($fastcgi_cache_key)
}
if ($fastcgi_cache_use_stale != false) {
validate_string($fastcgi_cache_use_stale)
}

validate_bool($mail)
validate_bool($stream)
Expand Down

0 comments on commit 6f166e0

Please sign in to comment.