This commit is contained in:
Troy Dai 2018-04-20 10:42:08 -07:00
Родитель 40b971ed13
Коммит a7b4e5cfb0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 9608535492BEDAC8
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -31,6 +31,11 @@ var (
sourceCommit = "Unknown"
)
// main defines the logic of A01 dispatcher
// Dispatcher cooridinates a test job. There is one instance of dispatcher for each test run. The dispatcher will parse
// the test index and submit tasks to the task queue. Once the task queue is set up, the dispatcher begin monitoring the
// status of the queue. When it determines all the tasks are completed, the dispatcher will trigger a reporting and then
// exit.
func main() {
common.LogInfo(fmt.Sprintf("A01 Droid Dispatcher.\nVersion: %s.\nCommit: %s.\n", version, sourceCommit))
common.LogInfo(fmt.Sprintf("Pod name: %s", os.Getenv(common.EnvPodName)))