You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@flink.apache.org by "Yun Tang (JIRA)" <ji...@apache.org> on 2018/07/05 04:38:00 UTC

[jira] [Created] (FLINK-9758) ContinuousFileProcessingTest failed due to not setting runtimeContext

Yun Tang created FLINK-9758:
-------------------------------

             Summary: ContinuousFileProcessingTest failed due to not setting runtimeContext
                 Key: FLINK-9758
                 URL: https://issues.apache.org/jira/browse/FLINK-9758
             Project: Flink
          Issue Type: Bug
          Components: DataStream API
    Affects Versions: 1.5.0
            Reporter: Yun Tang
             Fix For: 1.5.2


Currently, ContinuousFileMonitoringFunction#open() method will print runtime context if the log-level is Debug:
{code:java}
if (LOG.isDebugEnabled()) {
   LOG.debug("Opened {} (taskIdx= {}) for path: {}",
      getClass().getSimpleName(), getRuntimeContext().getIndexOfThisSubtask(), path);
}
{code}

However, ContinuousFileProcessingTest did not set runtime context for monitoringFunction, which will result in UT failure due to IllegalStateException if log level is set to DEBUG
{code:java}
IllegalStateException("The runtime context has not been initialized."); 
{code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)