feat!: redefine hostname as a required property that maps to --host (#256)

This commit is contained in:
Gareth
2024-05-02 22:28:38 -07:00
parent f6d58376b7
commit 484701007f
21 changed files with 388 additions and 302 deletions

View File

@@ -102,3 +102,7 @@ func (t *taskRunnerImpl) GetRepoOrchestrator(repoID string) (*repo.RepoOrchestra
func (t *taskRunnerImpl) ScheduleTask(task tasks.Task, priority int) error {
return t.orchestrator.ScheduleTask(task, priority)
}
func (t *taskRunnerImpl) Config() *v1.Config {
return t.orchestrator.Config()
}