Compute worker - show docker pull image failure logs
I have added some code to show docker pull failure logs in the ingestion logs. But there are some problems
- When you make the function
_get_container_image
async, then I am able to write to the logs BUT then the code does not stop and moves to the scoring program which is expected because we don't useawait
to wait for _get_container_image to finish its execution. - If you remove async from
_get_container_image
then you get an error that the logs files does not exist
This needs some discussion