You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@accumulo.apache.org by "Josh Elser (JIRA)" <ji...@apache.org> on 2015/05/29 03:30:17 UTC

[jira] [Resolved] (ACCUMULO-3866) TraceScope not closed

     [ https://issues.apache.org/jira/browse/ACCUMULO-3866?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Josh Elser resolved ACCUMULO-3866.
----------------------------------
    Resolution: Fixed

> TraceScope not closed
> ---------------------
>
>                 Key: ACCUMULO-3866
>                 URL: https://issues.apache.org/jira/browse/ACCUMULO-3866
>             Project: Accumulo
>          Issue Type: Bug
>          Components: trace
>    Affects Versions: 1.7.0
>            Reporter: Josh Elser
>            Assignee: Josh Elser
>            Priority: Trivial
>              Labels: coverity
>             Fix For: 1.7.1, 1.8.0
>
>          Time Spent: 20m
>  Remaining Estimate: 0h
>
> Two cases in which {{TraceScope}} is returned but never closed (it implements {{Closeable}}.
> {panel:title=core/.../Trace.java}
> {code}
>   public static void off() {
>     org.apache.htrace.Span span = org.apache.htrace.Trace.currentSpan();
>     if (span != null) {
>       span.stop();
>       org.apache.htrace.Tracer.getInstance().continueSpan(null);
>     }
>   }
> {code}
> {panel}
> {panel:title=trace/.../Trace.java}
> {code}
>   public static void endThread(Span span) {
>     if (span != null) {
>       span.stop();
>       org.apache.htrace.Tracer.getInstance().continueSpan(null);
>     }
>   }
> {code}
> {panel}
> [~billie.rinaldi] do you know if there's a reason that these aren't getting closed or is it just a bug?



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)