database: fix term count error better
This commit is contained in:
parent
676c373356
commit
73c2e41af7
|
@ -67,7 +67,7 @@ func (db *DB) SaveRoute(resp *routerpc.AddHostResponse) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (db *DB) GetRouteForHost(name string) (*Route, error) {
|
func (db *DB) GetRouteForHost(name string) (*Route, error) {
|
||||||
rows, err := r.Table("routes").Filter(r.Row.Field("hostname", name)).Run(db.s)
|
rows, err := r.Table("routes").Filter(map[string]interface{}{"hostname": name}).Run(db.s)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue