You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2016/04/13 01:02:25 UTC

[jira] [Created] (HBASE-15639) Unguarded access to stackIndexes in Procedure#toStringDetails()

Ted Yu created HBASE-15639:
------------------------------

             Summary: Unguarded access to stackIndexes in Procedure#toStringDetails()
                 Key: HBASE-15639
                 URL: https://issues.apache.org/jira/browse/HBASE-15639
             Project: HBase
          Issue Type: Bug
            Reporter: Ted Yu
            Assignee: Ted Yu
            Priority: Minor


In Procedure#toStringDetails() :
{code}
    if (stackIndexes != null) {
      sb.append("\n");
      sb.append("stackIndexes=");
      sb.append(Arrays.toString(getStackIndexes()));
    }
{code}
The access is not protected by synchronized keyword whereas access to stackIndexes is protected in all other methods.

Note: getStackIndexes() has proper protection.



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