You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@flink.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2016/02/11 23:21:18 UTC

[jira] [Created] (FLINK-3392) Unprotected access to elements in ClosableBlockingQueue#size()

Ted Yu created FLINK-3392:
-----------------------------

             Summary: Unprotected access to elements in ClosableBlockingQueue#size()
                 Key: FLINK-3392
                 URL: https://issues.apache.org/jira/browse/FLINK-3392
             Project: Flink
          Issue Type: Bug
            Reporter: Ted Yu
            Priority: Minor


Here is related code:
{code}
  public int size() {
    return elements.size();
  }
{code}
Access to elements should be protected by lock.lock() / lock.unlock() pair.



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