Skip to content

Commit

Permalink
change error response massage from GitHub to GitLab (#4027)
Browse files Browse the repository at this point in the history
  • Loading branch information
SuleimanWA authored and cfieber committed Sep 20, 2019
1 parent 222660a commit 0008792
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ protected Headers getHeaders(GitlabArtifactAccount account) {
Optional<String> token = account.getTokenAsString();
if (token.isPresent()) {
headers.set("Private-Token", token.get());
log.info("Loaded credentials for GitHub Artifact Account {}", account.getName());
log.info("Loaded credentials for GitLab Artifact Account {}", account.getName());
} else {
log.info("No credentials included with GitHub Artifact Account {}", account.getName());
log.info("No credentials included with GitLab Artifact Account {}", account.getName());
}
return headers.build();
}
Expand Down

0 comments on commit 0008792

Please sign in to comment.