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/12/24 01:05:58 UTC

[jira] [Created] (FLINK-5391) Unprotected access to shutdown in AbstractNonHaServices#checkNotShutdown()

Ted Yu created FLINK-5391:
-----------------------------

             Summary: Unprotected access to shutdown in AbstractNonHaServices#checkNotShutdown()
                 Key: FLINK-5391
                 URL: https://issues.apache.org/jira/browse/FLINK-5391
             Project: Flink
          Issue Type: Bug
            Reporter: Ted Yu
            Priority: Minor


{code}
  private void checkNotShutdown() {
    checkState(!shutdown, "high availability services are shut down");
{code}
Access to shutdown is protected by lock in other places.
The code above should protect with lock as well.



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