Parcourir la source

remove unnecessary error

Darien Raymond il y a 8 ans
Parent
commit
f2e149e1d0
2 fichiers modifiés avec 1 ajouts et 2 suppressions
  1. 0 1
      common/protocol/user.go
  2. 1 1
      proxy/shadowsocks/server.go

+ 0 - 1
common/protocol/user.go

@@ -7,7 +7,6 @@ import (
 )
 
 var (
-	ErrUserMissing        = errors.New("User is not specified.")
 	ErrAccountMissing     = errors.New("Account is not specified.")
 	ErrNonMessageType     = errors.New("Not a protobuf message.")
 	ErrUnknownAccountType = errors.New("Unknown account type.")

+ 1 - 1
proxy/shadowsocks/server.go

@@ -32,7 +32,7 @@ func NewServer(ctx context.Context, config *ServerConfig) (*Server, error) {
 		return nil, errors.New("Shadowsocks|Server: No space in context.")
 	}
 	if config.GetUser() == nil {
-		return nil, protocol.ErrUserMissing
+		return nil, errors.New("Shadowsocks|Server: User is not specified.")
 	}
 
 	rawAccount, err := config.User.GetTypedAccount()