Improve no such node error messages

This commit is contained in:
Jakob Borg
2013-12-30 20:55:33 -05:00
parent af3e64a5a7
commit 2f660aff7a
2 changed files with 2 additions and 7 deletions

View File

@@ -12,7 +12,6 @@ acquire locks, but document what locks they require.
*/
import (
"errors"
"fmt"
"os"
"path"
@@ -40,10 +39,6 @@ type Model struct {
lastIdxBcastRequest time.Time
}
var (
errNoSuchNode = errors.New("no such node")
)
const (
FlagDeleted = 1 << 12
@@ -231,7 +226,7 @@ func (m *Model) RequestGlobal(nodeID, name string, offset uint64, size uint32, h
nc, ok := m.nodes[nodeID]
m.RUnlock()
if !ok {
return nil, errNoSuchNode
return nil, fmt.Errorf("RequestGlobal: no such node: %s", nodeID)
}
if opts.Debug.TraceNet {