Skip to content

Commit

Permalink
Merge pull request voxpupuli#1045 from bastelfreak/fastcgi_cache_use_…
Browse files Browse the repository at this point in the history
…stale

change fastcgi_cache_use_stale default false->undef
  • Loading branch information
hunner committed Mar 8, 2017
2 parents d6cac80 + d432db6 commit 0a4b04c
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 0a4b04c

Please sign in to comment.