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
The status endpoint currently returns an additional empty string as a tag. This should be removed.
curl -s 'https://kf-api-dataservice-qa.kids-first.io/status' { "_status": { "branch": "HEAD", "code": 200, "commit": "212a49c", "message": "Welcome to the Kids First Dataservice API", "tags": [ "1.1.4", "" ], "version": "1.1.4" } }
The text was updated successfully, but these errors were encountered:
To be more specific, the status endpoint in QA returns tags as an empty array:
status
tags
{ "_status": { "branch": "HEAD", "code": 200, "commit": "dfc53b8", "message": "Welcome to the Kids First Dataservice API", "tags": [], "version": "1.1.4" } }
whereas PRD returns an additional empty string as a tag as pointed out:
{ "_status": { "branch": "HEAD", "code": 200, "commit": "212a49c", "message": "Welcome to the Kids First Dataservice API", "tags": [ "1.1.4", "" ], "version": "1.1.4" } }
Sorry, something went wrong.
It makes sense that qa and dev do not have tags, as those commits have no tags.
liberaliscomputing
No branches or pull requests
The status endpoint currently returns an additional empty string as a tag. This should be removed.
The text was updated successfully, but these errors were encountered: