Skip to content

Commit 3fb6dc3

Browse files
committedMar 24, 2025
Update protocol to token.create
1 parent 1424052 commit 3fb6dc3

File tree

4 files changed

+19
-13
lines changed

4 files changed

+19
-13
lines changed
 

‎Cargo.lock

+16-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dependencies/typedb/repositories.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def typedb_protocol():
2929
git_repository(
3030
name = "typedb_protocol",
3131
remote = "https://github.com/farost/typedb-protocol",
32-
commit = "b4b7ee87b08c16831a21629f81974347f38cce5c", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_protocol
32+
commit = "7df6a6bfbbbd29940558ae7940b2065e1e2ba0b1", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_protocol
3333
)
3434
# git_repository(
3535
# name = "typedb_protocol",

‎rust/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060

6161
[dependencies.typedb-protocol]
6262
features = []
63-
rev = "b4b7ee87b08c16831a21629f81974347f38cce5c"
63+
rev = "7df6a6bfbbbd29940558ae7940b2065e1e2ba0b1"
6464
git = "https://github.com/typedb/typedb-protocol"
6565
default-features = false
6666

‎rust/src/connection/network/stub.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ impl<Channel: GRPCChannel> RPCStub<Channel> {
6767
trace!("Renewing token...");
6868
call_credentials.reset_token();
6969
let request = call_credentials.credentials().clone().try_into_proto()?;
70-
let token = self.grpc.sign_in(request).await?.into_inner().token;
70+
let token = self.grpc.authentication_token_create(request).await?.into_inner().token;
7171
call_credentials.set_token(token);
7272
trace!("Token renewed");
7373
}

0 commit comments

Comments
 (0)