Skip to content
12 changes: 0 additions & 12 deletions temporalio/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1879,9 +1879,6 @@ async def execute_update(
This will target the workflow with :py:attr:`run_id` if present. To use a
different run ID, create a new handle with via :py:meth:`Client.get_workflow_handle`.

.. warning::
This API is experimental

.. warning::
WorkflowHandles created as a result of :py:meth:`Client.start_workflow` will
send updates to the latest workflow with the same workflow ID even if it is
Expand Down Expand Up @@ -1991,9 +1988,6 @@ async def start_update(
This will target the workflow with :py:attr:`run_id` if present. To use a
different run ID, create a new handle with via :py:meth:`Client.get_workflow_handle`.

.. warning::
This API is experimental

.. warning::
WorkflowHandles created as a result of :py:meth:`Client.start_workflow` will
send updates to the latest workflow with the same workflow ID even if it is
Expand Down Expand Up @@ -2084,9 +2078,6 @@ def get_update_handle(
Users may prefer the more typesafe :py:meth:`get_update_handle_for`
which accepts an update definition.

.. warning::
This API is experimental

Args:
id: Update ID to get a handle to.
workflow_run_id: Run ID to tie the handle to. If this is not set,
Expand Down Expand Up @@ -2116,9 +2107,6 @@ def get_update_handle_for(

This is the same as :py:meth:`get_update_handle` but typed.

.. warning::
This API is experimental

Args:
update: The update method to use for typing the handle.
id: Update ID to get a handle to.
Expand Down
3 changes: 0 additions & 3 deletions temporalio/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -777,9 +777,6 @@ def current_update_info() -> Optional[UpdateInfo]:
This is powered by :py:mod:`contextvars` so it is only valid within the
update handler and coroutines/tasks it has started.

.. warning::
This API is experimental

Returns:
Info for the current update handler the code calling this is executing
within if any.
Expand Down
Loading