Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add repo name to logs #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions reposerver/repository/repository.go
Original file line number Diff line number Diff line change
Expand Up @@ -2570,7 +2570,7 @@ func (s *Service) GetGitFiles(_ context.Context, request *apiclient.GitFilesRequ

gitClient, revision, err := s.newClientResolveRevision(repo, revision, git.WithCache(s.cache, !noRevisionCache))
if err != nil {
return nil, status.Errorf(codes.Internal, "unable to resolve git revision %s: %v", revision, err)
return nil, status.Errorf(codes.Internal, "unable to resolve git revision %s in repo %s: %v", revision, repo, err)
}

// check the cache and return the results if present
Expand Down Expand Up @@ -2628,7 +2628,7 @@ func (s *Service) GetGitDirectories(_ context.Context, request *apiclient.GitDir

gitClient, revision, err := s.newClientResolveRevision(repo, revision, git.WithCache(s.cache, !noRevisionCache))
if err != nil {
return nil, status.Errorf(codes.Internal, "unable to resolve git revision %s: %v", revision, err)
return nil, status.Errorf(codes.Internal, "unable to resolve git revision %s in repo %s: %v", revision, repo, err)
}

// check the cache and return the results if present
Expand Down Expand Up @@ -2716,13 +2716,13 @@ func (s *Service) UpdateRevisionForPaths(_ context.Context, request *apiclient.U
gitClientOpts := git.WithCache(s.cache, true)
gitClient, revision, err := s.newClientResolveRevision(repo, revision, gitClientOpts)
if err != nil {
return nil, status.Errorf(codes.Internal, "unable to resolve git revision %s: %v", revision, err)
return nil, status.Errorf(codes.Internal, "unable to resolve git revision %s in repo %s: %v", revision, repo, err)
}

syncedRevision, err = gitClient.LsRemote(syncedRevision)
if err != nil {
s.metricsServer.IncGitLsRemoteFail(gitClient.Root(), revision)
return nil, status.Errorf(codes.Internal, "unable to resolve git revision %s: %v", revision, err)
return nil, status.Errorf(codes.Internal, "unable to resolve git revision %s in repo %s: %v", revision, repo, err)
}

// No need to compare if it is the same revision
Expand Down
Loading