diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5faf175..f419dd0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} - name: Start Azure Cosmos DB emulator - run: docker run --detach --publish 8081:8081 --publish 10250-10255:10250-10255 mcr.microsoft.com/cosmosdb/linux/azure-cosmos-emulator:latest + run: docker run --detach --publish 8082:8081 --publish 10250-10255:10250-10255 mcr.microsoft.com/cosmosdb/linux/azure-cosmos-emulator:latest - name: Setup database run: | @@ -50,5 +50,5 @@ jobs: - name: Run ndc-test working-directory: ndc-spec - # run: cargo run --bin ndc-test -- replay --endpoint http://0.0.0.0:8080 --snapshots-dir ../cosmos/ndc-test-snapshots - run: cargo run --bin ndc-test -- test --endpoint http://0.0.0.0:8080 + run: cargo run --bin ndc-test -- replay --endpoint http://0.0.0.0:8080 --snapshots-dir ../cosmos/ndc-test-snapshots + # run: cargo run --bin ndc-test -- test --endpoint http://0.0.0.0:8080 diff --git a/connector_config_emulator.json b/connector_config_emulator.json index 76afce3..b8e7dd2 100644 --- a/connector_config_emulator.json +++ b/connector_config_emulator.json @@ -1,6 +1,6 @@ { "azure_cosmos_key": "C2y6yDjf5/R+ob0N8A7Cgv30VRDJIWEHLM+4QDU5DE2nQ9nDuVTqobD4b8mGGyPMbIZnqyMsEcaGQy67XIw/Jw==", - "azure_cosmos_db_endpoint": "https://localhost:8081/", + "azure_cosmos_db_endpoint": "https://localhost:8082/", "azure_cosmos_db_name": "ConnectorTest", "azure_cosmos_no_of_rows_to_fetch": 100 } diff --git a/script/app.js b/script/app.js index f806881..4eb21ef 100644 --- a/script/app.js +++ b/script/app.js @@ -1,7 +1,7 @@ import { CosmosClient } from '@azure/cosmos' const cosmosClient = new CosmosClient({ - endpoint: 'https://localhost:8081/', + endpoint: 'https://localhost:8082/', key: 'C2y6yDjf5/R+ob0N8A7Cgv30VRDJIWEHLM+4QDU5DE2nQ9nDuVTqobD4b8mGGyPMbIZnqyMsEcaGQy67XIw/Jw==' })