New grpc uses failfast by default, but that code was written with other default in mind, so just preserve it for now. Signed-off-by: Alexander Morozov <lk4d4@docker.com>
@@ -279,7 +279,7 @@ func (r *remote) startEventsMonitor() error {
er := &containerd.EventsRequest{
Timestamp: tsp,
}
- events, err := r.apiClient.Events(context.Background(), er)
+ events, err := r.apiClient.Events(context.Background(), er, grpc.FailFast(false))
if err != nil {
return err