Workers Service Readiness

JFrog REST APIs

Content Type
REST API
ft:sourceType
Paligo

Description: Checks whether the service is alive or not.

Since: 7.63.2

Security: No authentication is required.

Usage: GET /worker/api/v1/system/readiness

Produces: text/html; charset=utf-8

Sample Usage

curl -X GET 'https://myserver.com/worker/api/v1/system/readiness'
Ok

Success Response Codes:

200: OK response. On SaaS, in multi-tenant mode, the Worker service will always return 200.

Error Response Codes:

503 Service is not ready because one of the dependent services is not ready. Only the Access service is required for the Worker service. This status is for single tenant, on premise mode only.

Sample Error

{  "errors": 
  [
    {      "status": 503,
           "message": "{\"code\":\"UNAVAILABLE\",\"message\":\"One or more of the dependent services/resources have failed\"}"
    }  
  ]
}