Merge "veyron.io/veyron/veyron/services/identity/identityd: Convert to use verror2"
diff --git a/services/identity/identityd/main.go b/services/identity/identityd/main.go
index c9fbb40..dec6d22 100644
--- a/services/identity/identityd/main.go
+++ b/services/identity/identityd/main.go
@@ -21,7 +21,7 @@
"veyron.io/veyron/veyron2/options"
"veyron.io/veyron/veyron2/rt"
"veyron.io/veyron/veyron2/security"
- "veyron.io/veyron/veyron2/verror"
+ verror "veyron.io/veyron/veyron2/verror2"
"veyron.io/veyron/veyron2/vlog"
"veyron.io/veyron/veyron/lib/signals"
@@ -181,7 +181,7 @@
if invoker := d[suffix]; invoker != nil {
return invoker, allowEveryoneAuthorizer{}, nil
}
- return nil, nil, verror.NoExistf("%q is not a valid suffix at this server", suffix)
+ return nil, nil, verror.Make(verror.NoExist, nil, suffix)
}
// Starts the blessing services and the discharging service on the same port.