diff options
author | Matthew Holt <[email protected]> | 2022-03-04 20:26:37 -0700 |
---|---|---|
committer | Matthew Holt <[email protected]> | 2022-03-04 20:26:37 -0700 |
commit | be82cc7acae6c259aec176363478cdb390a989ee (patch) | |
tree | 9224745b999627674a5c2a15ca54d44bd6d5d492 /caddy.go | |
parent | 2bb8550a4cd59575ea7cc7c507550b9bd079894f (diff) | |
download | caddy-be82cc7acae6c259aec176363478cdb390a989ee.tar.gz caddy-be82cc7acae6c259aec176363478cdb390a989ee.zip |
Appease the linter
Diffstat (limited to 'caddy.go')
-rw-r--r-- | caddy.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -550,7 +550,7 @@ func finishSettingUp(ctx Context, cfg *Config) error { return fmt.Errorf("loading dynamic config from %T: %v", val, err) } // do this in a goroutine so current config can finish being loaded; otherwise deadlock - go runLoadedConfig(loadedConfig) + go func() { _ = runLoadedConfig(loadedConfig) }() } } |