You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Methods such as update_batch_and_job_status are duplicated across the code to prevent different modules from being dependent on each other.
We need to 1) find and document all the repetitive code 2) move it into a shared or utils location 3) make sure the duplication is removed from the existing code
The text was updated successfully, but these errors were encountered:
Hey thanks for your interest in this task. Yes, the goal is to remove that duplicate method from those locations and move it into the shared location. shared/utils.py is good for now. We can refactor that file once it grows a bit more.
As of today, we merged a new big PR and there is now an extractor.py where this method also lives.
@Aleksandir I see you opened a PR for it - great work! Really appreciate it!!
Make sure you rebase the new code that just merged. Its quite a big merge, you will need to tear down the docker contains, and re-run all the docker compose stuff. Also make sure to pull the minio docker image.
Once you do that, please retest to confirm stuff still works and tag me on the PR.
Methods such as
update_batch_and_job_status
are duplicated across the code to prevent different modules from being dependent on each other.We need to 1) find and document all the repetitive code 2) move it into a shared or utils location 3) make sure the duplication is removed from the existing code
The text was updated successfully, but these errors were encountered: