We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e18553 commit 727166eCopy full SHA for 727166e
README.rst
@@ -56,7 +56,7 @@ Explore the API, change properties and undeploy applications:
56
>>>
57
58
59
-Restart all managed servers asynchronous:
+Start all managed servers asynchronously:
60
61
.. code-block:: python
62
@@ -67,9 +67,9 @@ Restart all managed servers asynchronous:
67
admin_server_name = wls.edit.adminServerName
68
69
running_jobs = []
70
- for server in wls.domainRuntime.serverRuntimes:
+ for server in wls.domainRuntime.serverLifeCycleRuntimes:
71
if server.name != admin_server_name:
72
- running_jobs.append(server.restart(prefer_async=True))
+ running_jobs.append(server.start(prefer_async=True))
73
74
while running_jobs:
75
for job in running_jobs:
0 commit comments