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

Unified Diff: task_scheduler/go/parse_task_cfg/main.go

Issue 2296763008: [task scheduler] Move files from build_scheduler/ to task_scheduler/ (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: Created 4 years, 3 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 | « task_scheduler/go/db/testutil.go ('k') | task_scheduler/go/scheduling/cache_wrapper.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: task_scheduler/go/parse_task_cfg/main.go
diff --git a/build_scheduler/go/parse_task_cfg/main.go b/task_scheduler/go/parse_task_cfg/main.go
similarity index 76%
rename from build_scheduler/go/parse_task_cfg/main.go
rename to task_scheduler/go/parse_task_cfg/main.go
index 248ceed5a37073f8bda29b996f25ed0e796df874..c03058ba3c6cf3ff668fef2bfbb4912326b7400b 100644
--- a/build_scheduler/go/parse_task_cfg/main.go
+++ b/task_scheduler/go/parse_task_cfg/main.go
@@ -9,8 +9,8 @@ import (
"io/ioutil"
"github.com/skia-dev/glog"
- "go.skia.org/infra/build_scheduler/go/task_scheduler"
"go.skia.org/infra/go/common"
+ "go.skia.org/infra/task_scheduler/go/scheduling"
)
var (
@@ -25,7 +25,7 @@ func main() {
if err != nil {
glog.Fatal(err)
}
- if _, err := task_scheduler.ParseTasksCfg(string(b)); err != nil {
+ if _, err := scheduling.ParseTasksCfg(string(b)); err != nil {
glog.Fatal(err)
}
}
« no previous file with comments | « task_scheduler/go/db/testutil.go ('k') | task_scheduler/go/scheduling/cache_wrapper.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698