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 01:34:18 UTC

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

Josh Elser created ACCUMULO-3866:
------------------------------------

             Summary: 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: Minor
             Fix For: 1.7.1, 1.8.0


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)