We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed32abc commit 0f25092Copy full SHA for 0f25092
services/director-v2/src/simcore_service_director_v2/modules/db/repositories/comp_tasks/_core.py
@@ -165,6 +165,8 @@ async def upsert_tasks_from_project(
165
# NOTE: really do an upsert here because of issue https://github.com/ITISFoundation/osparc-simcore/issues/2125
166
async with self.db_engine.begin() as conn:
167
list_of_comp_tasks_in_project: list[CompTaskAtDB] = (
168
+ # WARNING: this is NOT a real repository method, it is a utility function
169
+ # that calls backend services to generate the tasks list!! Refactoring needed!!
170
await _utils.generate_tasks_list_from_project(
171
project=project,
172
catalog_client=catalog_client,
0 commit comments