Skip to content

Commit

Permalink
change node notfound error
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Dec 4, 2019
1 parent 1a30faa commit 6655fab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pkg/scheduler/plugins/nodeorder/nodeorder.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ limitations under the License.
package nodeorder

import (
"fmt"
"k8s.io/apimachinery/pkg/api/errors"

v1 "k8s.io/api/core/v1"
"k8s.io/klog"
Expand Down Expand Up @@ -237,7 +237,7 @@ func (c *cachedNodeInfo) GetNodeInfo(name string) (*v1.Node, error) {
}
}
}
return nil, fmt.Errorf("failed to find node <%s>", name)
return nil, errors.NewNotFound(v1.Resource("node"), name)
}

return node.Node, nil
Expand Down
5 changes: 3 additions & 2 deletions pkg/scheduler/plugins/util/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ limitations under the License.
package util

import (
"fmt"
"k8s.io/apimachinery/pkg/api/errors"

v1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/labels"
Expand Down Expand Up @@ -204,7 +204,8 @@ type CachedNodeInfo struct {
func (c *CachedNodeInfo) GetNodeInfo(name string) (*v1.Node, error) {
node, found := c.Session.Nodes[name]
if !found {
return nil, fmt.Errorf("failed to find node <%s>", name)

return nil, errors.NewNotFound(v1.Resource("node"), name)
}

return node.Node, nil
Expand Down

0 comments on commit 6655fab

Please sign in to comment.