Skip to content

Commit 5b897b1

Browse files
authored
Update Core / InitializeWorkflow (#683)
* Updated core * Proto updates * start workflow job -> initialize workflow
1 parent 723d234 commit 5b897b1

20 files changed

+687
-611
lines changed

temporalio/bridge/Cargo.lock

+409-462
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

temporalio/bridge/proto/__init__.py

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
1-
from .core_interface_pb2 import ActivityHeartbeat, ActivityTaskCompletion
1+
from .core_interface_pb2 import (
2+
ActivityHeartbeat,
3+
ActivitySlotInfo,
4+
ActivityTaskCompletion,
5+
LocalActivitySlotInfo,
6+
WorkflowSlotInfo,
7+
)
28

39
__all__ = [
410
"ActivityHeartbeat",
11+
"ActivitySlotInfo",
512
"ActivityTaskCompletion",
13+
"LocalActivitySlotInfo",
14+
"WorkflowSlotInfo",
615
]

temporalio/bridge/proto/activity_result/activity_result_pb2.py

+4-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

temporalio/bridge/proto/activity_task/activity_task_pb2.py

+4-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

temporalio/bridge/proto/child_workflow/child_workflow_pb2.py

+4-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

temporalio/bridge/proto/common/common_pb2.py

+4-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

temporalio/bridge/proto/core_interface_pb2.py

+46-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)