sreejasahithi commented on code in PR #10081:
URL: https://github.com/apache/ozone/pull/10081#discussion_r3090658533


##########
hadoop-hdds/framework/src/main/java/org/apache/hadoop/hdds/server/OzoneProtocolMessageDispatcher.java:
##########
@@ -71,7 +72,7 @@ public RESPONSE processRequest(
       TYPE type,
       String traceId) throws ServiceException {
     Span span = TracingUtil.importAndCreateSpan(type.toString(), traceId);
-    try {
+    try (Scope currentscope = span.makeCurrent()) {

Review Comment:
   ```suggestion
       try (Scope currentScope = span.makeCurrent()) {
   ```
   nit: lets use lowerCamelCase here.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to