Dependency updates

This commit is contained in:
Dane Everitt
2020-08-06 18:55:29 -07:00
parent cba689136a
commit 919bec2f87
4 changed files with 466 additions and 39 deletions

View File

@@ -39,7 +39,7 @@ func Initialize(config *config.Configuration) error {
// Initialize the SFTP server in a background thread since this is
// a long running operation.
go func(instance *sftp_server.Server) {
if err := c.Initalize(); err != nil {
if err := c.Initialize(); err != nil {
log.WithField("subsystem", "sftp").WithField("error", errors.WithStack(err)).Error("failed to initialize SFTP subsystem")
}
}(c)