diff --git a/common/rpc/TypeDBStub.ts b/common/rpc/TypeDBStub.ts index 0571cddd8..92bb8eb17 100644 --- a/common/rpc/TypeDBStub.ts +++ b/common/rpc/TypeDBStub.ts @@ -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()); }); }); } diff --git a/dependencies/vaticle/artifacts.bzl b/dependencies/vaticle/artifacts.bzl index b4d90318c..da9ce8286 100644 --- a/dependencies/vaticle/artifacts.bzl +++ b/dependencies/vaticle/artifacts.bzl @@ -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():