Skip to content

Commit f1937e2

Browse files
Update core and cloud artifacts, diagonistics disable command
1 parent 1e1c387 commit f1937e2

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

dependencies/vaticle/artifacts.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def vaticle_typedb_artifact():
2929
artifact_name = "typedb-server-{platform}-{version}.{ext}",
3030
tag_source = deployment["artifact"]["release"]["download"],
3131
commit_source = deployment["artifact"]["snapshot"]["download"],
32-
commit = "66d8deeea813ac8a0f0aa42d6117b600ce62fe6f",
32+
commit = "fee8e9c5a8c17a58b4639b91e23458e715e0d3a3",
3333
)
3434

3535
def vaticle_typedb_cloud_artifact():
@@ -39,7 +39,7 @@ def vaticle_typedb_cloud_artifact():
3939
artifact_name = "typedb-cloud-server-{platform}-{version}.{ext}",
4040
tag_source = deployment_private["artifact"]["release"]["download"],
4141
commit_source = deployment_private["artifact"]["snapshot"]["download"],
42-
commit = "ff7170c2ced9870fbc079f2499694c0dee1d3389",
42+
commit = "2c96925694c196be3c898aa3ffc0f56ccc84f400",
4343
)
4444

4545
maven_artifacts = {

java/test/behaviour/connection/ConnectionStepsBase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public abstract class ConnectionStepsBase {
6363
);
6464

6565
public static final Map<String, String> serverOptions = map(
66-
pair("--diagnostics.reporting.enable", "false")
66+
pair("--diagnostics.reporting.errors", "false")
6767
);
6868

6969
public static TypeDBTransaction tx() {

java/test/integration/DriverQueryTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public class DriverQueryTest {
7474
@BeforeClass
7575
public static void setUpClass() throws InterruptedException, IOException, TimeoutException {
7676
Map<String, String> options = new HashMap<>();
77-
options.put("--diagnostics.reporting.enable", "false");
77+
options.put("--diagnostics.reporting.errors", "false");
7878
typedb = new TypeDBCoreRunner(options);
7979
typedb.start();
8080
typedbDriver = TypeDB.coreDriver(typedb.address());

tool/test/start-cloud-servers.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ function server_start() {
4949
--server.encryption.file.internal-grpc.root-ca=`realpath tool/test/resources/encryption/int-grpc-root-ca.pem` \
5050
--server.encryption.file.internal-zmq.private-key=`realpath tool/test/resources/encryption/int-zmq-private-key` \
5151
--server.encryption.file.internal-zmq.public-key=`realpath tool/test/resources/encryption/int-zmq-public-key` \
52-
--diagnostics.reporting.enable=false
52+
--diagnostics.reporting.errors=false
5353
}
5454

5555
rm -rf $(seq 1 $NODE_COUNT) typedb-cloud-all

tool/test/start-core-server.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ rm -rf typedb-all
2626

2727
bazel run //tool/test:typedb-extractor -- typedb-all
2828
BAZEL_JAVA_HOME=$(bazel run //tool/test:echo-java-home)
29-
JAVA_HOME=$BAZEL_JAVA_HOME ./typedb-all/typedb server --diagnostics.reporting.enable=false &
29+
JAVA_HOME=$BAZEL_JAVA_HOME ./typedb-all/typedb server --diagnostics.reporting.errors=false &
3030

3131
set +e
3232
POLL_INTERVAL_SECS=0.5

0 commit comments

Comments
 (0)