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 345f4e0 commit e4fdfee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,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 e4fdfee

Please sign in to comment.