Skip to content
Snippets Groups Projects
Commit 89c3f8b3 authored by Jano Hendriks's avatar Jano Hendriks
Browse files

Constants changes

parent dbc1ae11
Branches
Tags v1.164.0
No related merge requests found
......@@ -15,12 +15,11 @@ import (
)
const (
JobDefinition = "batch-job-definition" // The job definition name on aws
binaryPath = "/root/home/workers" // The worker binary path in the docker container
BatchJobMessageTypeS3 BatchJobMessageType = "s3"
)
type BatchJobQueue string
type BatchJobMessageType string
// Queue names are the same as the batch Job queue names in aws
const (
BatchJobQueueLow BatchJobQueue = "batch-job-queue-low"
......@@ -28,9 +27,8 @@ const (
BatchJobQueueHigh BatchJobQueue = "batch-job-queue-high"
)
const (
BatchJobMessageTypeS3 BatchJobMessageType = "s3"
)
type BatchJobQueue string
type BatchJobMessageType string
type BatchJob struct {
Name *string
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment