Skip to content

Commit

Permalink
fix: fixing compliance tests
Browse files Browse the repository at this point in the history
  • Loading branch information
psanders committed Jun 22, 2024
1 parent 6c00a26 commit ae97db5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,9 @@ jobs:
- name: SIP Connect v1.1 Compliance Tests
if: github.event.inputs.skip_tests == 'false'
run: |
docker-compose -f compose.yaml -f compose.dev.yaml up --build --abort-on-container-exit --exit-code-from compliance
docker-compose -f compose.yaml -f compose.dev.yaml up \
compliance edgeport01 edgeport02 dispatcher registry requester apiserver connect location \
--build --abort-on-container-exit --exit-code-from compliance
publish-to-docker-hub:
name: Publish to Docker Hub
uses: ./.github/workflows/docker-hub-release.yaml
Expand Down
4 changes: 2 additions & 2 deletions mods/sdk/src/domains/domains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export class Domains extends APIClient {
* @param {string} request.name - Name of the Domain
* @param {string} request.domainUri - The FQDN of the Domain
* @param {string} request.accessControlListRef - The reference to the AccessControlList for the Domain
* @param {CC.EgressPolicy[]} request.egressPolicies - The list of EgressPolicies for the Domain
* @param {EgressPolicy[]} request.egressPolicies - The list of EgressPolicies for the Domain
* @param {string} request.extended - Optional extended attributes
* @return {Promise<CreateDomainResponse>} The newly created Domain
* @throws if request is null
Expand Down Expand Up @@ -108,7 +108,7 @@ export class Domains extends APIClient {
* @param {UpdateDomainRequest} request - Partial with the fields to update
* @param {string} request.name - Name of the Domain
* @param {string} request.accessControlListRef - The reference to the AccessControlList for the Domain
* @param {CC.EgressPolicy[]} request.egressPolicies - The list of EgressPolicies for the Domain
* @param {EgressPolicy[]} request.egressPolicies - The list of EgressPolicies for the Domain
* @param {string} request.extended - Optional extended attributes
* @return {Promise<UpdateDomainResponse>} The updated Domain
* @example
Expand Down

0 comments on commit ae97db5

Please sign in to comment.