diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b2c3e24..5c55793 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 8084:8081 --publish 10250-10255:10250-10255 mcr.microsoft.com/cosmosdb/linux/azure-cosmos-emulator:latest + run: docker run --detach --publish 8080:8081 --publish 10250-10255:10250-10255 mcr.microsoft.com/cosmosdb/linux/azure-cosmos-emulator:latest - name: Setup database # working-directory: script run: sleep 100 && cd cosmos/script && npm install --save @azure/cosmos && node app.js diff --git a/connector_config_emulator.json b/connector_config_emulator.json index 3d4e5c5..1b7bdd2 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:8084/", + "azure_cosmos_db_endpoint": "https://localhost:8080/", "azure_cosmos_db_name": "ConnectorTest", "azure_cosmos_no_of_rows_to_fetch": 100 } diff --git a/script/app.js b/script/app.js index b3eacc9..033c34c 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:8084/', + endpoint: 'https://localhost:8080/', key: 'C2y6yDjf5/R+ob0N8A7Cgv30VRDJIWEHLM+4QDU5DE2nQ9nDuVTqobD4b8mGGyPMbIZnqyMsEcaGQy67XIw/Jw==' })