Skip to content

Commit

Permalink
Update Core / InitializeWorkflow (#683)
Browse files Browse the repository at this point in the history
* Updated core
* Proto updates
* start workflow job -> initialize workflow
  • Loading branch information
Sushisource authored Nov 6, 2024
1 parent 723d234 commit 5b897b1
Show file tree
Hide file tree
Showing 20 changed files with 687 additions and 611 deletions.
871 changes: 409 additions & 462 deletions temporalio/bridge/Cargo.lock

Large diffs are not rendered by default.

11 changes: 10 additions & 1 deletion temporalio/bridge/proto/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
from .core_interface_pb2 import ActivityHeartbeat, ActivityTaskCompletion
from .core_interface_pb2 import (
ActivityHeartbeat,
ActivitySlotInfo,
ActivityTaskCompletion,
LocalActivitySlotInfo,
WorkflowSlotInfo,
)

__all__ = [
"ActivityHeartbeat",
"ActivitySlotInfo",
"ActivityTaskCompletion",
"LocalActivitySlotInfo",
"WorkflowSlotInfo",
]

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions temporalio/bridge/proto/activity_task/activity_task_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions temporalio/bridge/proto/child_workflow/child_workflow_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions temporalio/bridge/proto/common/common_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

48 changes: 46 additions & 2 deletions temporalio/bridge/proto/core_interface_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 5b897b1

Please sign in to comment.