Skip to content

Commit

Permalink
Merge pull request #99 from sonatype-nexus-community/fix/incorrect-ha…
Browse files Browse the repository at this point in the history
…ndling-of-cla-url

fix: handle CLA URL correctly from UI
  • Loading branch information
madpah authored Aug 30, 2024
2 parents f6632f7 + a2fd65d commit 391204b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.go
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ func handleProcessSignCla(c echo.Context) (err error) {
}

user.TimeSigned = time.Now()
user.CLAText, err = getClaText(os.Getenv(user.CLATextUrl))
user.CLAText, err = getClaText(user.CLATextUrl)

if err != nil {
logger.Error("Failed to get CLA Text - not blocking signature registration", zap.Error(err))
Expand Down

0 comments on commit 391204b

Please sign in to comment.