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 2017/04/17 02:00:45 UTC

[jira] [Created] (FLINK-6310) LocalExecutor#endSession() uses wrong lock for synchronization

Ted Yu created FLINK-6310:
-----------------------------

             Summary: LocalExecutor#endSession() uses wrong lock for synchronization
                 Key: FLINK-6310
                 URL: https://issues.apache.org/jira/browse/FLINK-6310
             Project: Flink
          Issue Type: Bug
            Reporter: Ted Yu


Here is related code:
{code}
  public void endSession(JobID jobID) throws Exception {
    synchronized (LocalExecutor.class) {
      LocalFlinkMiniCluster flink = this.flink;
{code}
In other places, lock field is used for synchronization:
{code}
  public void start() throws Exception {
    synchronized (lock) {
{code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)