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

classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

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

Shang Yuanchun (Jira)
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)