Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
motatoes committed Nov 15, 2024
1 parent 5e63db7 commit cfa2b90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/controllers/github.go
Original file line number Diff line number Diff line change
Expand Up @@ -624,8 +624,8 @@ func retrieveConfigFromCache(orgId uint, repoFullName string) (string, *dg_confi

projectsGraph, err := dg_configuration.CreateProjectDependencyGraph(config.Projects)
if err != nil {
log.Printf("error retrieving graph of dependencies:", err)
return "", nil, nil, fmt.Errorf("error retrieving graph of dependencies:", err)
log.Printf("error retrieving graph of dependencies: %v", err)
return "", nil, nil, fmt.Errorf("error retrieving graph of dependencies: %v", err)
}

return repoCache.DiggerYmlStr, &config, &projectsGraph, nil
Expand Down

0 comments on commit cfa2b90

Please sign in to comment.