@@ -943,7 +943,7 @@ async def run(self, params: CancelActivityWorkflowParams) -> None:
943943 self ._activity_result = await handle
944944 except ActivityError as err :
945945 self ._activity_result = f"Error: { err .cause .__class__ .__name__ } "
946- # TODO(cretz): Remove when https://github.com/temporalio/sdk-core /issues/323 is fixed
946+ # TODO(cretz): Remove when https://github.com/temporalio/sdk-rust /issues/323 is fixed
947947 except CancelledError as err :
948948 self ._activity_result = f"Error: { err .__class__ .__name__ } "
949949 # Wait forever
@@ -2430,7 +2430,7 @@ async def test_workflow_dataclass_typed(client: Client, env: WorkflowEnvironment
24302430 # TODO(cretz): Fix
24312431 if env .supports_time_skipping :
24322432 pytest .skip (
2433- "Java test server: https://github.com/temporalio/sdk-core /issues/390"
2433+ "Java test server: https://github.com/temporalio/sdk-rust /issues/390"
24342434 )
24352435 async with new_worker (
24362436 client , DataClassTypedWorkflow , activities = [data_class_typed_activity ]
@@ -7246,7 +7246,7 @@ async def test_workflow_deadlock_interruptible(client: Client):
72467246 # TODO(cretz): Improve this test and other deadlock/eviction tests by
72477247 # checking slot counts with Core. There are a couple of bugs where used slot
72487248 # counts are off by one and slots are released before eviction (see
7249- # https://github.com/temporalio/sdk-core /issues/894).
7249+ # https://github.com/temporalio/sdk-rust /issues/894).
72507250
72517251 # This worker used to not be able to shutdown because we hung evictions on
72527252 # deadlock
0 commit comments