Skip to content

Commit

Permalink
resolved issue
Browse files Browse the repository at this point in the history
Signed-off-by: Umesh Lumbhani <umeshl@proximabiz.com>
  • Loading branch information
umeshlumbhani247 committed Oct 26, 2023
1 parent 0ebfc77 commit b2c0f1b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cla-backend-go/v2/sign/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -1359,7 +1359,8 @@ func (s *service) requestCorporateSignature(ctx context.Context, apiURL string,
}
}
if haveSigned {
log.WithFields(f).WithError(err).Warnf("one or more corporate valid signature exists for Company ID: %s, Project ID: %s", input.CompanyID, input.ProjectID)
err := fmt.Errorf("one or more corporate valid signature exists for Company ID: %s, Project ID: %s", input.CompanyID, input.ProjectID)
log.WithFields(f).WithError(err).Warnf(err.Error())
return nil, err
}
callbackURL := s.getCorporateSignatureCallbackUrl(input.ProjectID, input.CompanyID)
Expand Down

0 comments on commit b2c0f1b

Please sign in to comment.