Skip to content

Commit

Permalink
removed directpath enabled attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
surbhigarg92 committed Sep 16, 2024
1 parent f36c4d9 commit 830e5e9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -233,9 +233,10 @@ private Map<String, String> getBuiltInMetricAttributes(String key, DatabaseName
}

private void addBuiltInMetricAttributes(
CompositeTracer compositeTracer, Map<String, String> attributes, Boolean isDirectPathUsed) {
CompositeTracer compositeTracer, Map<String, String> builtInMetricsAttributes, Boolean isDirectPathUsed) {
if (compositeTracer != null) {
// Direct Path used attribute
Map<String, String> attributes = new HashMap<>(builtInMetricsAttributes);
attributes.put(
BuiltInMetricsConstant.DIRECT_PATH_USED_KEY.getKey(), Boolean.toString(isDirectPathUsed));

Expand Down

0 comments on commit 830e5e9

Please sign in to comment.