Skip to content

Commit

Permalink
improve error message
Browse files Browse the repository at this point in the history
  • Loading branch information
bisgaard-itis committed Dec 3, 2024
1 parent 8fc6f0e commit 7f1bd60
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci-testing-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2889,7 +2889,7 @@ jobs:
uv venv .venv && source .venv/bin/activate
make openapi-specs
changed_files=$(git diff --name-only | awk '{$1=$1};1')
echo "files which changed: ${changed_files}"
echo "Changes (run 'make openapi-specs' to update): \n${changed_files}"
[ -z "${changed_files}" ] && exit 1
Expand Down
7 changes: 7 additions & 0 deletions services/api-server/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@
},
"paths": {
"/v0/meta": {
"get": {
"tags": [
"meta"
],
"summary": "Get Service Metadata",
"operationId": "get_service_metadata",
"responses": {
"200": {
"description": "Successful Response",
"content": {
Expand Down

0 comments on commit 7f1bd60

Please sign in to comment.