Skip to content

Commit

Permalink
Merge pull request #4500 from nickmango/feature/gerrit-redirect
Browse files Browse the repository at this point in the history
Bug/Gerrit Return URL
  • Loading branch information
nickmango authored Dec 12, 2024
2 parents f786536 + c6abdc2 commit c99d6ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cla-backend-go/v2/sign/service.go
Original file line number Diff line number Diff line change
@@ -2343,8 +2343,8 @@ func (s *service) RequestIndividualSignatureGerrit(ctx context.Context, input *m
return nil, errors.New("no gerrits found for project")
}

returnURL := gerrits.List[0].GerritURL
log.WithFields(f).Debugf("returnURL: %s", returnURL)
returnURL := input.ReturnURL
log.WithFields(f).Debugf("returnURL: %s", input.ReturnURL)

if latestSignature != nil {
log.WithFields(f).Debugf("comparing latest signature document version: %s to latest document version: %s", latestSignature.SignatureDocumentMajorVersion, latestDocument.DocumentMajorVersion)

0 comments on commit c99d6ee

Please sign in to comment.