1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-06-24 22:26:54 +02:00

Fix breaking build

This commit is contained in:
Asim
2015-10-20 18:03:39 +01:00
parent 975c6d4148
commit e2b849da29
2 changed files with 4 additions and 3 deletions

View File

@ -66,7 +66,7 @@ func (k *watcher) Stop() {
func newWatcher(kr *kregistry) (registry.Watcher, error) {
svi := kr.client.Services(api.NamespaceAll)
services, err := svi.List(labels.Everything())
services, err := svi.List(labels.Everything(), fields.Everything())
if err != nil {
return nil, err
}