We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After registering an application in AiDBOX with the following manifest, the operation does not appear on the <aidbox>/MobileDoctor/healthcheck.
<aidbox>/MobileDoctor/healthcheck
Registration request:
PUT /App { "apiVersion":1, "endpoint":{ "type":"http-rpc", "url":"http://localhost:9002/" }, "id":"mobile-doctor", "operations":{ "app-healthcheck":{ "method":"GET", "path":[ "MobileDoctor", "healthcheck" ] } }, "type":"app" }
Request GET /App/mobile-doctor returns:
GET /App/mobile-doctor
{ "type": "app", "endpoint": { "url": "http://localhost:9002/", "type": "http-rpc" }, "apiVersion": 1, "operations": { "app-healthcheck": { "path": [ "MobileDoctor", "healthcheck" ], "method": "GET" } }, "id": "mobile-doctor", "resourceType": "App", "meta": { "lastUpdated": "2020-12-14T15:30:25.848862Z", "createdAt": "2020-12-14T15:30:25.848862Z", "versionId": "2" } }
Response to the next request GET /MobileDoctor/healthcheck is:
GET /MobileDoctor/healthcheck
{ "resourceType": "OperationOutcome", "text": { "div": "GET /MobileDoctor/healthcheck not found" }, "issue": [ { "severity": "error", "code": "not-found", "details": { "text": "GET /MobileDoctor/healthcheck not found" } } ] }
Operations searching request GET /Operation?_ilike=mobile returns:
GET /Operation?_ilike=mobile
{ "query-time": 47, "meta": { "versionId": "2" }, "type": "searchset", "resourceType": "Bundle", "total": 0, "link": [ { "relation": "first", "url": "/Operation?_ilike=mobile&page=1" }, { "relation": "self", "url": "/Operation?_ilike=mobile&page=1" } ], "query-timeout": 60000, "entry": [], "query-sql": [ "SELECT \"operation\".* FROM \"operation\" WHERE (\"operation\".id || ' ' || \"operation\".resource::text) ilike ? LIMIT ? OFFSET ? ", "%mobile%", 100, 0 ] }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
After registering an application in AiDBOX with the following manifest, the operation does not appear on the
<aidbox>/MobileDoctor/healthcheck
.Registration request:
Request
GET /App/mobile-doctor
returns:Response to the next request
GET /MobileDoctor/healthcheck
is:Operations searching request
GET /Operation?_ilike=mobile
returns:The text was updated successfully, but these errors were encountered: