[
https://issues.apache.org/jira/browse/HBASE-15639?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15239854#comment-15239854
]
Hudson commented on HBASE-15639:
--------------------------------
SUCCESS: Integrated in HBase-1.3-IT #610 (See
[https://builds.apache.org/job/HBase-1.3-IT/610/])
HBASE-15639 Unguarded access to stackIndexes in (tedyu: rev
439f4a3f61e94a9b84b9ac528039711996cb1030)
*
hbase-procedure/src/main/java/org/apache/hadoop/hbase/procedure2/Procedure.java
> 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
> Fix For: 2.0.0, 1.3.0, 1.4.0
>
> Attachments: HBASE-15639.v1.patch
>
>
> 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)