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