File tree 2 files changed +1
-8
lines changed
2 files changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ def typedb_artifact():
25
25
artifact_name = "typedb-all-{platform}-{version}.{ext}" ,
26
26
tag_source = deployment ["artifact" ]["release" ]["download" ],
27
27
commit_source = deployment ["artifact" ]["snapshot" ]["download" ],
28
- commit = "3a5fe020b18839b8b24d6a5a21e35ce55430086d "
28
+ tag = "3.0.6 "
29
29
)
30
30
31
31
#def typedb_cloud_artifact():
Original file line number Diff line number Diff line change @@ -41,7 +41,6 @@ pub struct TypeDBDriver {
41
41
database_manager : DatabaseManager ,
42
42
user_manager : UserManager ,
43
43
background_runtime : Arc < BackgroundRuntime > ,
44
- username : Option < String > ,
45
44
is_cloud : bool ,
46
45
}
47
46
@@ -130,7 +129,6 @@ impl TypeDBDriver {
130
129
database_manager,
131
130
user_manager,
132
131
background_runtime,
133
- username : None ,
134
132
is_cloud : false ,
135
133
} )
136
134
}
@@ -281,7 +279,6 @@ impl TypeDBDriver {
281
279
// Ok(Connection {
282
280
// server_connections,
283
281
// background_runtime,
284
- // username: Some(credential.username().to_owned()),
285
282
// is_cloud: true,
286
283
// })
287
284
// }
@@ -404,10 +401,6 @@ impl TypeDBDriver {
404
401
self . server_connections . iter ( )
405
402
}
406
403
407
- pub ( crate ) fn username ( & self ) -> Option < & str > {
408
- self . username . as_deref ( )
409
- }
410
-
411
404
pub ( crate ) fn unable_to_connect_error ( & self ) -> Error {
412
405
Error :: Connection ( ConnectionError :: ServerConnectionFailed {
413
406
addresses : self . servers ( ) . map ( Address :: clone) . collect_vec ( ) ,
You can’t perform that action at this time.
0 commit comments