Skip to content

Commit 2ffb08c

Browse files
authored
Turn off statistics reporting in CI (#247)
## Usage and product changes We turn off the `--diagnostics.reporting.statistics` in our CI builds not to send non-real diagnostics data. In version 2.28 and earlier, this flag purely prevents `TypeDB` from sending any diagnostics data. In the upcoming version 2.28.1, this flag still allows `TypeDB` to send a single diagnostics snapshot with the information of when the diagnostics data has been turned off, but it happens only after the server runs for 1 hour, so we expect the CI builds not to reach this point and not to send any diagnostics data as well.
1 parent 619764a commit 2ffb08c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

test/assembly/AssemblyTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ public void test_console_command() throws IOException, InterruptedException, Tim
2424
TypeDBConsoleRunner consoleRunner = new TypeDBConsoleRunner();
2525
Map<String, String> coreOptions = new HashMap<>();
2626
coreOptions.put("--diagnostics.reporting.errors", "false");
27+
coreOptions.put("--diagnostics.reporting.statistics", "false");
2728
coreOptions.put("--diagnostics.monitoring.enable", "false");
2829
TypeDBCoreRunner coreRunner = new TypeDBCoreRunner(coreOptions);
2930
try {

0 commit comments

Comments
 (0)