Skip to content
This repository has been archived by the owner on Oct 9, 2023. It is now read-only.

Commit

Permalink
cleanup console logs for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
flyingsilverfin committed Jan 14, 2022
1 parent 81b6d02 commit d0ff562
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
10 changes: 1 addition & 9 deletions common/rpc/TypeDBStub.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,7 @@ export abstract class TypeDBStub {
return new Promise((resolve, reject) => {
this.stub().databases_contains(req, (err, res) => {
if (err) reject(new TypeDBClientError(err));
else {
try {
resolve(res.getContains());
} catch {
console.log("ERROR in databases contains");
} finally {
console.error("Databases contains finished: '" + req.getName() + "' is: '" + res.getContains() + "'");
}
}
else resolve(res.getContains());
});
});
}
Expand Down
2 changes: 1 addition & 1 deletion dependencies/vaticle/artifacts.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def vaticle_typedb_artifacts():
artifact_name = "typedb-server-{platform}-{version}.{ext}",
tag_source = deployment["artifact.release"],
commit_source = deployment["artifact.snapshot"],
commit = "1a2b1baaa6c41dd8b6e9ce757527dbf04f6e7483",
tag = "2.6.1",
)

def vaticle_typedb_cluster_artifacts():
Expand Down

0 comments on commit d0ff562

Please sign in to comment.