Skip to content

Commit fe46e1a

Browse files
authored
Remove "experimental" notices from update APIs (#707)
1 parent effc857 commit fe46e1a

File tree

2 files changed

+0
-15
lines changed

2 files changed

+0
-15
lines changed

temporalio/client.py

-12
Original file line numberDiff line numberDiff line change
@@ -2177,9 +2177,6 @@ async def execute_update(
21772177
This will target the workflow with :py:attr:`run_id` if present. To use a
21782178
different run ID, create a new handle with via :py:meth:`Client.get_workflow_handle`.
21792179
2180-
.. warning::
2181-
This API is experimental
2182-
21832180
Args:
21842181
update: Update function or name on the workflow.
21852182
arg: Single argument to the update.
@@ -2284,9 +2281,6 @@ async def start_update(
22842281
This will target the workflow with :py:attr:`run_id` if present. To use a
22852282
different run ID, create a new handle with via :py:meth:`Client.get_workflow_handle`.
22862283
2287-
.. warning::
2288-
This API is experimental
2289-
22902284
Args:
22912285
update: Update function or name on the workflow. arg: Single argument to the
22922286
update.
@@ -2366,9 +2360,6 @@ def get_update_handle(
23662360
Users may prefer the more typesafe :py:meth:`get_update_handle_for`
23672361
which accepts an update definition.
23682362
2369-
.. warning::
2370-
This API is experimental
2371-
23722363
Args:
23732364
id: Update ID to get a handle to.
23742365
workflow_run_id: Run ID to tie the handle to. If this is not set,
@@ -2398,9 +2389,6 @@ def get_update_handle_for(
23982389
23992390
This is the same as :py:meth:`get_update_handle` but typed.
24002391
2401-
.. warning::
2402-
This API is experimental
2403-
24042392
Args:
24052393
update: The update method to use for typing the handle.
24062394
id: Update ID to get a handle to.

temporalio/workflow.py

-3
Original file line numberDiff line numberDiff line change
@@ -778,9 +778,6 @@ def current_update_info() -> Optional[UpdateInfo]:
778778
This is powered by :py:mod:`contextvars` so it is only valid within the
779779
update handler and coroutines/tasks it has started.
780780
781-
.. warning::
782-
This API is experimental
783-
784781
Returns:
785782
Info for the current update handler the code calling this is executing
786783
within if any.

0 commit comments

Comments
 (0)