Unprotected endpoint for checking if worker is alive
Successful Response
Options endpoint for health/liveliness check.
const response = await fetch('/health/liveliness', { method: 'GET', headers: {}, }); const data = await response.json();
const response = await fetch('/health/liveliness', { method: 'OPTIONS', headers: {}, }); const data = await response.json();