Skip to content

Commit

Permalink
Update server.go (#3298)
Browse files Browse the repository at this point in the history
Fix typo in log message

Co-authored-by: Wesley Kim <wesley@chronosphere.io>
  • Loading branch information
miroswan and wesleyk authored Mar 2, 2021
1 parent a997c83 commit 6ee051b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dbnode/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ func Run(runOpts RunOptions) {
lockPath := path.Join(cfg.Filesystem.FilePathPrefixOrDefault(), filePathPrefixLockFile)
fslock, err := createAndAcquireLockfile(lockPath, newDirectoryMode)
if err != nil {
logger.Fatal("could not acqurie lock", zap.String("path", lockPath), zap.Error(err))
logger.Fatal("could not acquire lock", zap.String("path", lockPath), zap.Error(err))
}
// nolint: errcheck
defer fslock.releaseLockfile()
Expand Down

0 comments on commit 6ee051b

Please sign in to comment.