-
Notifications
You must be signed in to change notification settings - Fork 964
Open
Labels
Milestone
Description
this line prompted a disussion with @IsaacMilarky
It seems like this line is from legacy facade where it would collect into a working_commits table (so it could pick up a partial collection where it left off) and then at the end it would transfer them to the commits table.
As far as i can see, analyze_commits_in_parallel calls this
augur/augur/application/db/lib.py
Line 212 in c5eeb07
| s.insert(Commit), |
which uses the ORM Commit object https://github.com/chaoss/augur/blob/main/augur/application/db/models/augur_data.py#L1261
to write directly to the commits table
so this may need to be removed along with the table it refers to (although maybe an audit is necessary)