| Index: task_scheduler/go/task_scheduler/main.go
|
| diff --git a/task_scheduler/go/task_scheduler/main.go b/task_scheduler/go/task_scheduler/main.go
|
| index f7970e0dc80efca98011c6227d080a095584dda1..81d8da6ae00d091f5d3d933ea4af2ce002b3f322 100644
|
| --- a/task_scheduler/go/task_scheduler/main.go
|
| +++ b/task_scheduler/go/task_scheduler/main.go
|
| @@ -5,9 +5,6 @@ import (
|
| "path"
|
|
|
| "github.com/skia-dev/glog"
|
| - "go.skia.org/infra/build_scheduler/go/db"
|
| - "go.skia.org/infra/build_scheduler/go/db/local_db"
|
| - "go.skia.org/infra/build_scheduler/go/task_scheduler"
|
| "go.skia.org/infra/go/auth"
|
| "go.skia.org/infra/go/common"
|
| "go.skia.org/infra/go/gitinfo"
|
| @@ -17,6 +14,9 @@ import (
|
| "go.skia.org/infra/go/skiaversion"
|
| "go.skia.org/infra/go/swarming"
|
| "go.skia.org/infra/go/util"
|
| + "go.skia.org/infra/task_scheduler/go/db"
|
| + "go.skia.org/infra/task_scheduler/go/db/local_db"
|
| + "go.skia.org/infra/task_scheduler/go/scheduling"
|
| )
|
|
|
| const (
|
| @@ -40,7 +40,7 @@ var (
|
| }
|
|
|
| // Task Scheduler instance.
|
| - ts *task_scheduler.TaskScheduler
|
| + ts *scheduling.TaskScheduler
|
|
|
| // Git repo objects.
|
| repos *gitinfo.RepoMap
|
| @@ -109,7 +109,7 @@ func main() {
|
|
|
| // Create and start the task scheduler.
|
| glog.Infof("Creating task scheduler.")
|
| - ts, err = task_scheduler.NewTaskScheduler(d, cache, period, *workdir, REPOS, isolate, swarm)
|
| + ts, err = scheduling.NewTaskScheduler(d, cache, period, *workdir, REPOS, isolate, swarm)
|
| if err != nil {
|
| glog.Fatal(err)
|
| }
|
|
|