Check singleton background-worker freshness
curl --request GET \
--url https://harness.example.com/health/workerconst options = {method: 'GET'};
fetch('https://harness.example.com/health/worker', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://harness.example.com/health/worker"
response = requests.get(url)
print(response.text)System
Check singleton background-worker freshness
GET
/
health
/
worker
Check singleton background-worker freshness
curl --request GET \
--url https://harness.example.com/health/workerconst options = {method: 'GET'};
fetch('https://harness.example.com/health/worker', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://harness.example.com/health/worker"
response = requests.get(url)
print(response.text)Response
Worker is fresh or background work is disabled
