Skip to content

Commit

Permalink
fix:add the counterPartyId in the Body of the Postman "Query Catalog"…
Browse files Browse the repository at this point in the history
… POST request (#505)

* fix:add the counterPartyId in the Body of the "Query Catalog" POST request.

* fix:verify-license-headers check

* fix:validate-terraform-format check
  • Loading branch information
AndrYurk authored Jan 7, 2025
1 parent 20f7137 commit 56bbfe2
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Validate Terrform format"

- name: "Setup Terraform"
uses: hashicorp/setup-terraform@v3

- name: "Validate Terraform format"
working-directory: mxd
run: |-
terraform fmt -check -recursive
18 changes: 18 additions & 0 deletions icc-irs-challenges/index.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
<!--
Copyright (c) 2025 Contributors to the Eclipse Foundation
See the NOTICE file(s) distributed with this work for additional
information regarding copyright ownership.
This program and the accompanying materials are made available under the
terms of the Apache License, Version 2.0 which is available at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
License for the specific language governing permissions and limitations
under the License.
SPDX-License-Identifier: Apache-2.0
-->
<!DOCTYPE html>
<html lang="en">

Expand Down
2 changes: 1 addition & 1 deletion mxd/postman/management_api_tests.json
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@
"header": [],
"body": {
"mode": "raw",
"raw": "{\r\n \"@context\": {\r\n \"edc\": \"https://w3id.org/edc/v0.0.1/ns/\"\r\n },\r\n \"@type\": \"CatalogRequest\",\r\n \"counterPartyAddress\": \"{{PROVIDER_PROTOCOL_URL}}\",\r\n \"protocol\": \"dataspace-protocol-http\",\r\n \"querySpec\": {\r\n \"offset\": 0,\r\n \"limit\": 50\r\n }\r\n}",
"raw": "{\r\n \"@context\": {\r\n \"edc\": \"https://w3id.org/edc/v0.0.1/ns/\"\r\n },\r\n \"@type\": \"CatalogRequest\",\r\n \"counterPartyAddress\": \"{{PROVIDER_PROTOCOL_URL}}\",\r\n \"counterPartyId\": \"{{PROVIDER_ID}}\",\r\n \"protocol\": \"dataspace-protocol-http\",\r\n \"querySpec\": {\r\n \"offset\": 0,\r\n \"limit\": 50\r\n }\r\n}",
"options": {
"raw": {
"language": "json"
Expand Down

0 comments on commit 56bbfe2

Please sign in to comment.