don't panic

This commit is contained in:
Cadey Ratio 2017-04-28 22:39:18 -07:00
parent 316daa1eda
commit 3952248c6a
2 changed files with 3 additions and 10 deletions

View File

@ -79,17 +79,10 @@ func (b *BoltDBStorage) GetAllRoutes(ctx context.Context, user string) ([]Route,
}
// PutRoute creates a new route in the database.
func (b *BoltDBStorage) PutRoute(ctx context.Context, domain, kind string) (Route, error) {
switch kind {
case "tcp", "http":
// empty case, do nothing
default:
return Route{}, ErrInvalidKind
}
func (b *BoltDBStorage) PutRoute(ctx context.Context, domain, creator string) (Route, error) {
r := Route{
ID: uuid.New(),
Creator: ctx.Value("creator").(string),
Creator: creator,
Hostname: domain,
}

View File

@ -69,7 +69,7 @@ func (r *Route) Put(ctx context.Context, rt *proto.Route) (*proto.IDResponse, er
return nil, handleError(ctx, clitok, err, ln.F{"action": "Route.Put_getAuth"})
}
drt, err := r.db.PutRoute(ctx, rt.Host, "http")
drt, err := r.db.PutRoute(ctx, rt.Host, clitok.Owner)
if err != nil {
ln.Error(err, ln.F{"action": "Route.Put"})