Skip to content

Commit 776bae2

Browse files
chore: update submodule to sdk-rust (#1480)
* Rename sdk-core submodule repo to sdk-rust * update comments
1 parent 30b2b63 commit 776bae2

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1937,7 +1937,7 @@ users are encouraged to not use gevent in asyncio applications (including Tempor
19371937
# Development
19381938

19391939
The Python SDK is built to work with Python 3.9 and newer. It is built using
1940-
[SDK Core](https://github.com/temporalio/sdk-core/) which is written in Rust.
1940+
[SDK Core](https://github.com/temporalio/sdk-rust/) which is written in Rust.
19411941

19421942
### Building
19431943

tests/worker/test_workflow.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)