Browse Source

Fix typo in param. name in TransportService method

This commit fixes a typo in a parameter name for the
TransportService#setTracerLogExclude method.

Relates #20970
Jason Tedor 9 years ago
parent
commit
9bb8bd0578

+ 2 - 2
core/src/main/java/org/elasticsearch/transport/TransportService.java

@@ -173,8 +173,8 @@ public class TransportService extends AbstractLifecycleComponent {
         this.tracerLogInclude = tracerLogInclude.toArray(Strings.EMPTY_ARRAY);
     }
 
-    void setTracerLogExclude(List<String> tracelLogExclude) {
-        this.tracerLogExclude = tracelLogExclude.toArray(Strings.EMPTY_ARRAY);
+    void setTracerLogExclude(List<String> tracerLogExclude) {
+        this.tracerLogExclude = tracerLogExclude.toArray(Strings.EMPTY_ARRAY);
     }
 
     @Override