@@ -60,7 +60,6 @@ public class TracingContext {
6060 private Listener listener = null ; // null except when testing
6161 //final concatenated ID list set into x-ms-client-request-id header
6262 private String header = EMPTY_STRING ;
63- private String metricResults = EMPTY_STRING ;
6463 private static final Logger LOG = LoggerFactory .getLogger (AbfsClient .class );
6564 public static final int MAX_CLIENT_CORRELATION_ID_LENGTH = 72 ;
6665 public static final String CLIENT_CORRELATION_ID_PATTERN = "[a-zA-Z0-9-]*" ;
@@ -99,14 +98,6 @@ public TracingContext(String clientCorrelationID, String fileSystemID,
9998 }
10099 }
101100
102- public TracingContext (String clientCorrelationID , String fileSystemID ,
103- FSOperationType opType , boolean needsPrimaryReqId ,
104- TracingHeaderFormat tracingHeaderFormat , Listener listener ,
105- String metricResults ) {
106- this (clientCorrelationID , fileSystemID , opType , needsPrimaryReqId , tracingHeaderFormat , listener );
107- this .metricResults = metricResults ;
108- }
109-
110101 public TracingContext (TracingContext originalTracingContext ) {
111102 this .fileSystemID = originalTracingContext .fileSystemID ;
112103 this .streamID = originalTracingContext .streamID ;
@@ -129,10 +120,6 @@ public static String validateClientCorrelationID(String clientCorrelationID) {
129120 return clientCorrelationID ;
130121 }
131122
132- public String getMetricResults () {
133- return metricResults ;
134- }
135-
136123 public void setPrimaryRequestID () {
137124 primaryRequestId = UUID .randomUUID ().toString ();
138125 if (listener != null ) {
0 commit comments