diff options
author | Bjørn Erik Pedersen <[email protected]> | 2023-06-18 18:35:11 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2023-06-18 19:38:34 +0200 |
commit | 12dc9a6e4acd5280a3e8b1658cbb96669fa97057 (patch) | |
tree | 655225ab0edd8347164e9548a4b8c69a46458c6b /deploy | |
parent | 1b85303ac20dc0fb30323ec971b996783c6e32f2 (diff) | |
download | hugo-12dc9a6e4acd5280a3e8b1658cbb96669fa97057.tar.gz hugo-12dc9a6e4acd5280a3e8b1658cbb96669fa97057.zip |
deploy: Fix deploy defaults for non-zero flag values (e.g. maxDeletes, invalidateCDN)
This was broken in the config rewrite in Hugo 0.112.0.
The workaround is to be explicit about setting these flag values (even if just using the defaults), e.g.:
```
hugo deploy --invalidateCDN --maxDeletes 256
```
Fixes #11127
Diffstat (limited to 'deploy')
-rw-r--r-- | deploy/deployConfig.go | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/deploy/deployConfig.go b/deploy/deployConfig.go index 3f5465171..5bbec5ab4 100644 --- a/deploy/deployConfig.go +++ b/deploy/deployConfig.go @@ -127,11 +127,16 @@ func (m *Matcher) Matches(path string) bool { return m.re.MatchString(path) } +var DefaultConfig = DeployConfig{ + Workers: 10, + InvalidateCDN: true, + MaxDeletes: 256, +} + // DecodeConfig creates a config from a given Hugo configuration. func DecodeConfig(cfg config.Provider) (DeployConfig, error) { - var ( - dcfg DeployConfig - ) + + dcfg := DefaultConfig if !cfg.IsSet(deploymentConfigKey) { return dcfg, nil |