Skip to content

Commit

Permalink
[JENKINS-40422] Use scanCredentials instead of checkoutCredentials
Browse files Browse the repository at this point in the history
When you use a separate set of credentials for checkout and scanning
it makes sense to use the scan credentials to notify, for example it could
be that checkout credentials are of type SSH whilst scan are of type username/
password
  • Loading branch information
raul-arabaolaza committed Dec 19, 2016
1 parent ecf5373 commit a902495
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -409,7 +409,8 @@ private String getSha1() {
}

private String tryToInferCredentialsId() {
String credentialsID = getSource().getCredentialsId();
// Try to use scan credentials if available, if not fall back to checkout credentials
String credentialsID = getSource().getScanCredentialsId();
if (credentialsID != null) {
return credentialsID;
} else {
Expand Down

0 comments on commit a902495

Please sign in to comment.