@@ -710,6 +710,7 @@ async def _fetch_data_via_aioboto(
710710async def _start_and_wait_for_dynamic_services_ready (
711711 director_v2_client : httpx .AsyncClient ,
712712 product_name : str ,
713+ product_api_base_url : str ,
713714 user_id : UserID ,
714715 workbench_dynamic_services : dict [str , Node ],
715716 current_study : ProjectAtDB ,
@@ -721,6 +722,7 @@ async def _start_and_wait_for_dynamic_services_ready(
721722 assert_start_service (
722723 director_v2_client = director_v2_client ,
723724 product_name = product_name ,
725+ product_api_base_url = product_api_base_url ,
724726 user_id = user_id ,
725727 project_id = str (current_study .uuid ),
726728 service_key = node .key ,
@@ -939,6 +941,7 @@ async def test_nodeports_integration(
939941 await _start_and_wait_for_dynamic_services_ready (
940942 director_v2_client = async_client ,
941943 product_name = osparc_product_name ,
944+ product_api_base_url = osparc_product_api_url ,
942945 user_id = current_user ["id" ],
943946 workbench_dynamic_services = workbench_dynamic_services ,
944947 current_study = current_study ,
@@ -1134,6 +1137,7 @@ async def test_nodeports_integration(
11341137 await _start_and_wait_for_dynamic_services_ready (
11351138 director_v2_client = async_client ,
11361139 product_name = osparc_product_name ,
1140+ product_api_base_url = osparc_product_api_url ,
11371141 user_id = current_user ["id" ],
11381142 workbench_dynamic_services = workbench_dynamic_services ,
11391143 current_study = current_study ,
0 commit comments