Skip to content

Commit

Permalink
Update core and cloud artifacts, diagonistics disable command
Browse files Browse the repository at this point in the history
  • Loading branch information
flyingsilverfin committed Mar 23, 2024
1 parent 1e1c387 commit f1937e2
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions dependencies/vaticle/artifacts.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def vaticle_typedb_artifact():
artifact_name = "typedb-server-{platform}-{version}.{ext}",
tag_source = deployment["artifact"]["release"]["download"],
commit_source = deployment["artifact"]["snapshot"]["download"],
commit = "66d8deeea813ac8a0f0aa42d6117b600ce62fe6f",
commit = "fee8e9c5a8c17a58b4639b91e23458e715e0d3a3",
)

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

maven_artifacts = {
Expand Down
2 changes: 1 addition & 1 deletion java/test/behaviour/connection/ConnectionStepsBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public abstract class ConnectionStepsBase {
);

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

public static TypeDBTransaction tx() {
Expand Down
2 changes: 1 addition & 1 deletion java/test/integration/DriverQueryTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public class DriverQueryTest {
@BeforeClass
public static void setUpClass() throws InterruptedException, IOException, TimeoutException {
Map<String, String> options = new HashMap<>();
options.put("--diagnostics.reporting.enable", "false");
options.put("--diagnostics.reporting.errors", "false");
typedb = new TypeDBCoreRunner(options);
typedb.start();
typedbDriver = TypeDB.coreDriver(typedb.address());
Expand Down
2 changes: 1 addition & 1 deletion tool/test/start-cloud-servers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function server_start() {
--server.encryption.file.internal-grpc.root-ca=`realpath tool/test/resources/encryption/int-grpc-root-ca.pem` \
--server.encryption.file.internal-zmq.private-key=`realpath tool/test/resources/encryption/int-zmq-private-key` \
--server.encryption.file.internal-zmq.public-key=`realpath tool/test/resources/encryption/int-zmq-public-key` \
--diagnostics.reporting.enable=false
--diagnostics.reporting.errors=false
}

rm -rf $(seq 1 $NODE_COUNT) typedb-cloud-all
Expand Down
2 changes: 1 addition & 1 deletion tool/test/start-core-server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ rm -rf typedb-all

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

set +e
POLL_INTERVAL_SECS=0.5
Expand Down

0 comments on commit f1937e2

Please sign in to comment.