Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature: add launch method to Node class #849

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions jenkinsapi/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,27 @@ def set_offline(self, message="requested from jenkinsapi") -> None:
% (data["offline"], data["temporarilyOffline"])
)

def launch(self) -> None:
"""
Tries to launch a connection with the slave if it is currently
disconnected. Because launching a connection with the slave does not
mean it is online (a slave can be launched, but set offline), this
function does not check if the launch was successful.
"""
if not self._data["launchSupported"]:
raise AssertionError("The node does not support manually launch.")

if not self._data["manualLaunchAllowed"]:
raise AssertionError(
"It is not allowed to manually launch this node."
)

url = self.baseurl + "/launchSlaveAgent"
html_result = self.jenkins.requester.post_and_confirm_status(
url, data={}
)
log.debug(html_result)

def toggle_temporarily_offline(
self, message="requested from jenkinsapi"
) -> None:
Expand Down
Loading