Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1229)

Unified Diff: milo/appengine/console/console.go

Issue 2952473003: [milo] mv backend/git/gitiles -> common/gitiles (Closed)
Patch Set: typo :) Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « milo/appengine/common/gitiles/gitiles.go ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: milo/appengine/console/console.go
diff --git a/milo/appengine/console/console.go b/milo/appengine/console/console.go
index 638471484cb518900b3a3d54826542fd38c1e3c2..9359eb84f6642376401c715aa2ffa95b37863cdc 100644
--- a/milo/appengine/console/console.go
+++ b/milo/appengine/console/console.go
@@ -17,9 +17,9 @@ import (
"github.com/luci/luci-go/milo/api/config"
"github.com/luci/luci-go/milo/api/resp"
- "github.com/luci/luci-go/milo/appengine/backend/git"
"github.com/luci/luci-go/milo/appengine/buildbot"
"github.com/luci/luci-go/milo/appengine/common"
+ "github.com/luci/luci-go/milo/appengine/common/gitiles"
)
// Returns results of build[commit_index][builder_index]
@@ -65,7 +65,7 @@ func console(c context.Context, project, name string) (*resp.Console, error) {
if err != nil {
return nil, err
}
- commits, err := git.GetCommits(c, def.RepoURL, def.Branch, 25)
+ commits, err := gitiles.GetCommits(c, def.RepoURL, def.Branch, 25)
if err != nil {
return nil, err
}
« no previous file with comments | « milo/appengine/common/gitiles/gitiles.go ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698