1
0
mirror of https://github.com/go-kit/kit.git synced 2025-07-17 01:12:38 +02:00

Remove empty default in select

This commit is contained in:
shubhendra
2021-02-25 14:30:59 +05:30
committed by Mark Sagi-Kazar
parent 5550f4e5bf
commit d53f8e6879

View File

@ -135,7 +135,7 @@ func (fw *fakeWatcher) Next(context.Context) (*etcd.Response, error) {
return nil, nil
case <-fw.err:
return nil, errors.New("error from underlying etcd watcher")
default:
}
}
}