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)