Skip to content

Commit

Permalink
add repo name to logs
Browse files Browse the repository at this point in the history
  • Loading branch information
avinashkatamreddy-sg committed Jun 14, 2024
1 parent 2547abc commit 7d01e14
Showing 1 changed file with 4 additions and 4 deletions.
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

0 comments on commit 7d01e14

Please sign in to comment.