Skip to content

Commit

Permalink
Merge 0cf3988 into 5eed2a6
Browse files Browse the repository at this point in the history
  • Loading branch information
brotherlogic committed Oct 17, 2019
2 parents 5eed2a6 + 0cf3988 commit 6db2f3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cdprocessor.go
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ func (s *Server) runLink(ctx context.Context) error {
for _, rip := range s.rips {
err := s.makeLinks(ctx, rip.Id, false)
st := status.Convert(err)
if st.Code() != codes.ResourceExhausted || err != nil {
if st.Code() != codes.ResourceExhausted && err != nil {
return err
}
s.count++
Expand Down

0 comments on commit 6db2f3a

Please sign in to comment.