Skip to content

Commit

Permalink
Rename environment variable TRACING to TEST_TRACING_ENABLED
Browse files Browse the repository at this point in the history
  • Loading branch information
wendigo committed Jul 19, 2023
1 parent 764e6d0 commit 1c898fa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,7 @@ protected SELF self()
public DistributedQueryRunner build()
throws Exception
{
String tracingEnabled = firstNonNull(getenv("TRACING"), "false");
String tracingEnabled = firstNonNull(getenv("TESTS_TRACING_ENABLED"), "false");
if (parseBoolean(tracingEnabled) || tracingEnabled.equals("1")) {
withTracing();
}
Expand Down

0 comments on commit 1c898fa

Please sign in to comment.