Skip to content

Commit 4306d9f

Browse files
build(test): migrate pom.xml Surefire env from DO_NOT_TRACK=1 to AXONFLOW_TELEMETRY=off
Caught in deep code review of the DNT-removal sweep. The Surefire test plugin's <environmentVariables> block was still setting DO_NOT_TRACK=1 to suppress telemetry during local mvn test / IDE Maven test runs. After the production code stops honoring DNT, this becomes a no-op for telemetry suppression — so every local mvn test run would have fired real pings to checkpoint.getaxonflow.com. Flipping to AXONFLOW_TELEMETRY=off restores the suppression on the same path the CI workflows already migrated to.
1 parent d7c0041 commit 4306d9f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@
193193
<exclude>**/*IntegrationTest.java</exclude>
194194
</excludes>
195195
<environmentVariables>
196-
<DO_NOT_TRACK>1</DO_NOT_TRACK>
196+
<AXONFLOW_TELEMETRY>off</AXONFLOW_TELEMETRY>
197197
</environmentVariables>
198198
</configuration>
199199
</plugin>

0 commit comments

Comments
 (0)