We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf43fd4 commit 80f2fc8Copy full SHA for 80f2fc8
apps/docker-provider/src/index.ts
@@ -122,6 +122,7 @@ class DockerTaskOperations implements TaskOperations {
122
`--env=POD_NAME=${containerName}`,
123
`--env=COORDINATOR_HOST=${COORDINATOR_HOST}`,
124
`--env=COORDINATOR_PORT=${COORDINATOR_PORT}`,
125
+ `--env=SCHEDULED_AT_MS=${Date.now()}`,
126
`--name=${containerName}`,
127
];
128
apps/kubernetes-provider/src/index.ts
@@ -517,6 +517,10 @@ class KubernetesTaskOperations implements TaskOperations {
517
},
518
519
520
+ {
521
+ name: "SCHEDULED_AT_MS",
522
+ value: Date.now().toString(),
523
+ },
524
...this.#coordinatorEnvVars,
525
526
}
0 commit comments