@punks/backend-entity-manager 0.0.288 → 0.0.289
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +8 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +8 -4
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -40008,10 +40008,14 @@ let AwsBatchService = AwsBatchService_1 = class AwsBatchService {
|
|
|
40008
40008
|
jobQueue: queue.jobQueueArn,
|
|
40009
40009
|
jobDefinition: jobDefinition.jobDefinitionArn,
|
|
40010
40010
|
jobName,
|
|
40011
|
-
|
|
40012
|
-
|
|
40013
|
-
|
|
40014
|
-
|
|
40011
|
+
...(input.overrides?.command || jobDefinition.containerProperties?.command
|
|
40012
|
+
? {
|
|
40013
|
+
containerOverrides: {
|
|
40014
|
+
command: input.overrides?.command ??
|
|
40015
|
+
jobDefinition.containerProperties.command,
|
|
40016
|
+
},
|
|
40017
|
+
}
|
|
40018
|
+
: {}),
|
|
40015
40019
|
};
|
|
40016
40020
|
this.logger.info(`AWS JOB -> submitting job ${jobName} ${queue.jobQueueArn}`, {
|
|
40017
40021
|
request: submitJobRequest,
|