File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
java/test/behaviour/connection Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ def vaticle_typedb_artifact():
29
29
artifact_name = "typedb-server-{platform}-{version}.{ext}" ,
30
30
tag_source = deployment ["artifact" ]["release" ]["download" ],
31
31
commit_source = deployment ["artifact" ]["snapshot" ]["download" ],
32
- commit = "fee8e9c5a8c17a58b4639b91e23458e715e0d3a3 " ,
32
+ tag = "2.27.0-rc0 " ,
33
33
)
34
34
35
35
def vaticle_typedb_cloud_artifact ():
@@ -39,7 +39,7 @@ def vaticle_typedb_cloud_artifact():
39
39
artifact_name = "typedb-cloud-server-{platform}-{version}.{ext}" ,
40
40
tag_source = deployment_private ["artifact" ]["release" ]["download" ],
41
41
commit_source = deployment_private ["artifact" ]["snapshot" ]["download" ],
42
- commit = "2c96925694c196be3c898aa3ffc0f56ccc84f400 " ,
42
+ tag = "2.27.0-rc0 " ,
43
43
)
44
44
45
45
maven_artifacts = {
Original file line number Diff line number Diff line change @@ -63,7 +63,9 @@ public abstract class ConnectionStepsBase {
63
63
);
64
64
65
65
public static final Map <String , String > serverOptions = map (
66
- pair ("--diagnostics.reporting.errors" , "false" )
66
+ pair ("--diagnostics.reporting.errors" , "false" ),
67
+ pair ("--diagnostics.reporting.statistics" , "false" ),
68
+ pair ("--diagnostics.monitoring.monitoring" , "false" )
67
69
);
68
70
69
71
public static TypeDBTransaction tx () {
Original file line number Diff line number Diff line change @@ -211,6 +211,9 @@ async function run() {
211
211
await person . setAbstract ( tx ) ;
212
212
await person . setOwns ( tx , email , [ Annotation . KEY ] ) ;
213
213
man = await tx . concepts . getEntityType ( "man" ) ;
214
+ fathership = await tx . concepts . getRelationType ( "fathership" ) ;
215
+ father = await fathership . getRelatesForRoleLabel ( tx , "father" ) ;
216
+ await man . unsetPlays ( tx , father ) ;
214
217
await man . setSupertype ( tx , await tx . concepts . getRootEntityType ( ) ) ;
215
218
await person . setOwns ( tx , age ) ;
216
219
await lion . setOwns ( tx , age ) ;
You can’t perform that action at this time.
0 commit comments