Skip to content

Commit 9bb8bd0

Browse files
committed
Fix typo in param. name in TransportService method
This commit fixes a typo in a parameter name for the TransportService#setTracerLogExclude method. Relates #20970
1 parent d30de66 commit 9bb8bd0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/main/java/org/elasticsearch/transport/TransportService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,8 @@ void setTracerLogInclude(List<String> tracerLogInclude) {
173173
this.tracerLogInclude = tracerLogInclude.toArray(Strings.EMPTY_ARRAY);
174174
}
175175

176-
void setTracerLogExclude(List<String> tracelLogExclude) {
177-
this.tracerLogExclude = tracelLogExclude.toArray(Strings.EMPTY_ARRAY);
176+
void setTracerLogExclude(List<String> tracerLogExclude) {
177+
this.tracerLogExclude = tracerLogExclude.toArray(Strings.EMPTY_ARRAY);
178178
}
179179

180180
@Override

0 commit comments

Comments
 (0)