public static int updateWorkingChoreForExceedingDuration(WorkingChore workingChore)
throws Exception {
Connection connection = DirectTaskDatabaseConnection.getConnection();
synchronized (connection) {
return new ChoreProcess(connection).
updateWorkingChoreForExceedingDuration(workingChore);
}
}