From 43f8f32035e0a56b9e9d5e543d20597cc28aac0f Mon Sep 17 00:00:00 2001 From: Seth Date: Fri, 28 Jun 2024 11:49:04 -0400 Subject: [PATCH] Fixed SQL bug --- .../src/main/java/datawave/query/tables/ShardQueryLogic.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/warehouse/query-core/src/main/java/datawave/query/tables/ShardQueryLogic.java b/warehouse/query-core/src/main/java/datawave/query/tables/ShardQueryLogic.java index e064324ecf1..bd280f5b411 100644 --- a/warehouse/query-core/src/main/java/datawave/query/tables/ShardQueryLogic.java +++ b/warehouse/query-core/src/main/java/datawave/query/tables/ShardQueryLogic.java @@ -1167,11 +1167,6 @@ protected void loadQueryParameters(ShardQueryConfiguration config, Query setting setCollectTimingDetails(false); } - // Configure whether query IDs are logged on the tservers. - String tserverLoggingActive = settings.findParameter(QueryParameters.TSERVER_LOGGING_ACTIVE).getParameterValue().trim(); - if (!tserverLoggingActive.isEmpty()) { - config.setTserverLoggingActive(Boolean.parseBoolean(tserverLoggingActive)); - } stopwatch.stop(); }