From 8ee31317666a31ae16ad1baae043b6a497bd382b Mon Sep 17 00:00:00 2001 From: lucapette Date: Thu, 10 Apr 2014 15:05:31 +0200 Subject: [PATCH] Fix typo --- src/coordinator/coordinator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coordinator/coordinator.go b/src/coordinator/coordinator.go index 7f06b2ee67..2c210d2fd6 100644 --- a/src/coordinator/coordinator.go +++ b/src/coordinator/coordinator.go @@ -743,7 +743,7 @@ func (self *CoordinatorImpl) AuthenticateDbUser(db, username, password string) ( log.Debug("(raft:%s) Authenticating password for %s:%s", self.raftServer.(*RaftServer).raftServer.Name(), db, username) user, err := self.clusterConfiguration.AuthenticateDbUser(db, username, password) if user != nil { - log.Debug("(raft:%s) User %s authenticated succesfuly", self.raftServer.(*RaftServer).raftServer.Name(), username) + log.Debug("(raft:%s) User %s authenticated succesfully", self.raftServer.(*RaftServer).raftServer.Name(), username) } return user, err }