Skip to content

Commit

Permalink
review
Browse files Browse the repository at this point in the history
  • Loading branch information
dchhabda committed Oct 2, 2024
1 parent d9e7a51 commit 4b40c08
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pybossa/repositories/task_repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,33 +202,33 @@ def update(self, element):
raise DBIntegrityError(e)

def delete(self, element):
current_app.logger.info("delete request for task %d, project %d", element.id, element.project_id)
current_app.logger.info("Delete task profiling. delete request for task %d, project %d", element.id, element.project_id)
start_time = time.time()

tstart = time.time()
self._delete(element)
tend = time.time()
current_app.logger.info("Time for self._delete %f seconds (task %d, project %d)", tend - tstart, element.id, element.project_id)
current_app.logger.info("Delete task profiling. Time for self._delete %f seconds (task %d, project %d)", tend - tstart, element.id, element.project_id)

project = element.project
tstart = time.time()
self.db.session.commit()
tend = time.time()
current_app.logger.info("Time for self.db.session.commit %f seconds (task %d, project %d)", tend - tstart, element.id, element.project_id)
current_app.logger.info("Delete task profiling. Time for self.db.session.commit %f seconds (task %d, project %d)", tend - tstart, element.id, element.project_id)

tstart = time.time()
cached_projects.clean_project(element.project_id)
tend = time.time()
current_app.logger.info("Time for cached_projects.clean_project %f seconds (task %d, project %d)", tend - tstart, element.id, element.project_id)
current_app.logger.info("Delete task profiling. Time for cached_projects.clean_project %f seconds (task %d, project %d)", tend - tstart, element.id, element.project_id)

tstart = time.time()
self._delete_zip_files_from_store(project)
tend = time.time()
current_app.logger.info("Time for self._delete_zip_files_from_store %f seconds (task %d, project %d)", tend - tstart, element.id, element.project_id)
current_app.logger.info("Delete task profiling. Time for self._delete_zip_files_from_store %f seconds (task %d, project %d)", tend - tstart, element.id, element.project_id)

end_time = time.time()
time_diff = end_time - start_time
current_app.logger.info("Total deletion time for task %d, project %d was %f seconds", element.id, element.project_id, time_diff)
current_app.logger.info("Delete task profiling. Total deletion time for task %d, project %d was %f seconds", element.id, element.project_id, time_diff)

def delete_task_by_id(self, project_id, task_id):
from pybossa.jobs import check_and_send_task_notifications
Expand Down

0 comments on commit 4b40c08

Please sign in to comment.