diff options
author | Matthew Holt <[email protected]> | 2022-03-25 11:28:54 -0600 |
---|---|---|
committer | Matthew Holt <[email protected]> | 2022-03-25 11:28:54 -0600 |
commit | d06d0e79f839a26ab2cf81b00ba2d180623c57a9 (patch) | |
tree | c215c3c16ad9280df4721b53460bd36aa5893489 /admin.go | |
parent | a58f240d3ecbb59285303746406cab50217f8d24 (diff) | |
download | caddy-d06d0e79f839a26ab2cf81b00ba2d180623c57a9.tar.gz caddy-d06d0e79f839a26ab2cf81b00ba2d180623c57a9.zip |
go.mod: Upgrade CertMagic to v0.16.0
Includes several breaking changes; code base updated accordingly.
- Added lots of context arguments
- Use fs.ErrNotExist
- Rename ACMEManager -> ACMEIssuer; CertificateManager -> Manager
Diffstat (limited to 'admin.go')
-rw-r--r-- | admin.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1000,7 +1000,7 @@ func handleStop(w http.ResponseWriter, r *http.Request) error { Log().Error("unable to notify stopping to service manager", zap.Error(err)) } - exitProcess(Log().Named("admin.api")) + exitProcess(context.Background(), Log().Named("admin.api")) return nil } |