i have a python script placed in bitbucket location . i have code in the python file as below
def healthCheck():
print ("::healthCheck()::")
while time.time() < timeout:
healthy = True;
# some logic is here
if not healthy:
print ("Sleeping for 5 seconds")
time.sleep(5)
else:
break;
return healthy
in groovy i want to store this return values. The value returned will be required in the next step of my evaluation. To achieve this i have tried some thing like this in my code
def cmd = url 'python ${bitbucket_location}/testPythonFile.py'
def proc = cmd.execute()
isDeadPodHenrietta = proc.text()
now i am getting null for the variable "cmd". So the rest operation fails giving null pointer exception. Even m not sure if it the correct way to store a return value from the script. Kindly help with this.
This groovy script is getting used for the deployment purpose. Thanks in advance.