From 449974404ac230cc44bb48fcb2ba0479e4e38d4a Mon Sep 17 00:00:00 2001 From: Stephan Fitzpatrick Date: Wed, 22 Nov 2023 08:16:07 -0800 Subject: [PATCH] Update method name in wmill README sample code (#2679) In the README's example code for the wmill Python client, the method name `start_execution` has been changed to `run_script_async`. This change is in line with the recent updates we made to the client's public API. The naming adjustment adds more clarity to the method's functionality, and ensures that the sample code in the README is accurate and stays updated with the latest changes in the wmill Python client's API. --- python-client/wmill/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-client/wmill/README.md b/python-client/wmill/README.md index 032fffacd2..2bb1066fc4 100644 --- a/python-client/wmill/README.md +++ b/python-client/wmill/README.md @@ -17,7 +17,7 @@ def main(): print(client.version) print(client.get("u/user/resource_path")) - job_id = client.start_execution(path="path/to/script") + job_id = client.run_script_async(path="path/to/script") print(job_id) return client.run_script(path="path/to/script", args={"arg1": "value1"})