Skip to content
12 changes: 0 additions & 12 deletions temporalio/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -2177,9 +2177,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

Args:
update: Update function or name on the workflow.
arg: Single argument to the update.
Expand Down Expand Up @@ -2284,9 +2281,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

Args:
update: Update function or name on the workflow. arg: Single argument to the
update.
Expand Down Expand Up @@ -2366,9 +2360,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 @@ -2398,9 +2389,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 @@ -778,9 +778,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