@@ -1100,9 +1100,6 @@ def update(
1100
1100
argument that can accept more fields later if needed. The handler may return
1101
1101
a serializable value which will be sent back to the caller of the update.
1102
1102
1103
- .. warning::
1104
- This API is experimental
1105
-
1106
1103
Args:
1107
1104
fn: The function to decorate.
1108
1105
name: Update name. Defaults to method ``__name__``. Cannot be present
@@ -2981,9 +2978,6 @@ def start_local_activity(
2981
2978
At least one of ``schedule_to_close_timeout`` or ``start_to_close_timeout``
2982
2979
must be present.
2983
2980
2984
- .. warning::
2985
- Local activities are currently experimental.
2986
-
2987
2981
Args:
2988
2982
activity: Activity name or function reference.
2989
2983
arg: Single argument to the activity.
@@ -3152,9 +3146,6 @@ async def execute_local_activity(
3152
3146
"""Start a local activity and wait for completion.
3153
3147
3154
3148
This is a shortcut for ``await`` :py:meth:`start_local_activity`.
3155
-
3156
- .. warning::
3157
- Local activities are currently experimental.
3158
3149
"""
3159
3150
# We call the runtime directly instead of top-level start_local_activity to
3160
3151
# ensure we don't miss new parameters
@@ -3282,9 +3273,6 @@ def start_local_activity_class(
3282
3273
"""Start a local activity from a callable class.
3283
3274
3284
3275
See :py:meth:`start_local_activity` for parameter and return details.
3285
-
3286
- .. warning::
3287
- Local activities are currently experimental.
3288
3276
"""
3289
3277
return _Runtime .current ().workflow_start_local_activity (
3290
3278
activity ,
@@ -3410,9 +3398,6 @@ async def execute_local_activity_class(
3410
3398
"""Start a local activity from a callable class and wait for completion.
3411
3399
3412
3400
This is a shortcut for ``await`` :py:meth:`start_local_activity_class`.
3413
-
3414
- .. warning::
3415
- Local activities are currently experimental.
3416
3401
"""
3417
3402
# We call the runtime directly instead of top-level start_local_activity to
3418
3403
# ensure we don't miss new parameters
@@ -3540,9 +3525,6 @@ def start_local_activity_method(
3540
3525
"""Start a local activity from a method.
3541
3526
3542
3527
See :py:meth:`start_local_activity` for parameter and return details.
3543
-
3544
- .. warning::
3545
- Local activities are currently experimental.
3546
3528
"""
3547
3529
return _Runtime .current ().workflow_start_local_activity (
3548
3530
activity ,
@@ -3668,9 +3650,6 @@ async def execute_local_activity_method(
3668
3650
"""Start a local activity from a method and wait for completion.
3669
3651
3670
3652
This is a shortcut for ``await`` :py:meth:`start_local_activity_method`.
3671
-
3672
- .. warning::
3673
- Local activities are currently experimental.
3674
3653
"""
3675
3654
# We call the runtime directly instead of top-level start_local_activity to
3676
3655
# ensure we don't miss new parameters
0 commit comments