Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
pranshi06 committed Mar 26, 2024
1 parent 895ba80 commit 40003b0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Start Azure Cosmos DB emulator
run: docker run --detach --publish 8082:8081 --publish 10250-10255:10250-10255 mcr.microsoft.com/cosmosdb/linux/azure-cosmos-emulator:latest
run: docker run --detach --publish 8081:8081 --publish 10250-10255:10250-10255 mcr.microsoft.com/cosmosdb/linux/azure-cosmos-emulator:latest

- name: Setup database
run: |
sleep 100
sleep 120
cd cosmos/script
npm install --save @azure/cosmos
node app.js
Expand All @@ -51,4 +51,3 @@ 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
2 changes: 1 addition & 1 deletion connector_config_emulator.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"azure_cosmos_key": "C2y6yDjf5/R+ob0N8A7Cgv30VRDJIWEHLM+4QDU5DE2nQ9nDuVTqobD4b8mGGyPMbIZnqyMsEcaGQy67XIw/Jw==",
"azure_cosmos_db_endpoint": "https://localhost:8082/",
"azure_cosmos_db_endpoint": "https://localhost:8081/",
"azure_cosmos_db_name": "ConnectorTest",
"azure_cosmos_no_of_rows_to_fetch": 100
}
2 changes: 1 addition & 1 deletion script/app.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { CosmosClient } from '@azure/cosmos'

const cosmosClient = new CosmosClient({
endpoint: 'https://localhost:8082/',
endpoint: 'https://localhost:8081/',
key: 'C2y6yDjf5/R+ob0N8A7Cgv30VRDJIWEHLM+4QDU5DE2nQ9nDuVTqobD4b8mGGyPMbIZnqyMsEcaGQy67XIw/Jw=='
})

Expand Down

0 comments on commit 40003b0

Please sign in to comment.