Stephen Herron
01/21/2022, 3:13 PMimport pandas
This doesn’t seem to work unless I specifically supply the custom image (and the task execution arn). I would have expected if run_config:image is null it would use the one from the task_definition? Does it default to something other than the container def?Kevin Kho
Stephen Herron
01/21/2022, 4:07 PM{
"cpu": null,
"env": null,
"type": "ECSRun",
"image": null,
"labels": [
"test"
],
"memory": null,
"__version__": "0.15.9",
"task_role_arn": "arn:aws:iam::XXXXX:role/prefect-task-role",
"run_task_kwargs": {
"cluster": "prefect-ecs-cluster",
"launchType": "FARGATE"
},
"task_definition": null,
"execution_role_arn": null,
"task_definition_arn": null,
"task_definition_path": null
}
Kevin Kho