Skip to content

Commit

Permalink
Merge pull request #147 from tigrisdata/main
Browse files Browse the repository at this point in the history
Bete release
  • Loading branch information
JigarJoshi authored Oct 31, 2022
2 parents 6fdf91a + 9925d22 commit eab0b1a
Show file tree
Hide file tree
Showing 6 changed files with 76 additions and 61 deletions.
2 changes: 1 addition & 1 deletion api/proto
Submodule proto updated from ec2709 to 452d3c
28 changes: 21 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
"eslint-plugin-unicorn": "^43.0.2",
"eslint-plugin-unused-imports": "^2.0.0",
"grpc_tools_node_protoc_ts": "^5.3.2",
"grpc-tools": "^1.11.2",
"grpc-tools": "^1.11.3",
"jest": "^28.1.3",
"prettier": "2.7.1",
"ts-jest": "^28.0.8",
Expand All @@ -106,6 +106,7 @@
},
"dependencies": {
"@grpc/grpc-js": "^1.6.10",
"dotenv": "^16.0.3",
"google-protobuf": "^3.21.0",
"json-bigint": "^1.0.0",
"typescript": "^4.7.2"
Expand Down
4 changes: 2 additions & 2 deletions src/__tests__/consumables/cursor.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ describe("class FindCursor", () => {
server.addService(TigrisService, TestService.handler.impl);
server.addService(ObservabilityService, TestObservabilityService.handler.impl);
server.bindAsync(
"0.0.0.0:" + SERVER_PORT,
"localhost:" + SERVER_PORT,
// test purpose only
ServerCredentials.createInsecure(),
(err: Error | null) => {
Expand All @@ -30,7 +30,7 @@ describe("class FindCursor", () => {
}
}
);
const tigris = new Tigris({serverUrl: "0.0.0.0:" + SERVER_PORT});
const tigris = new Tigris({serverUrl: "localhost:" + SERVER_PORT});
db = tigris.getDatabase("db3");
done();
});
Expand Down
Loading

0 comments on commit eab0b1a

Please sign in to comment.