dockerzhang opened a new issue #680:
URL: https://github.com/apache/incubator-inlong/issues/680


   <p>1. In MessageStoreManager class, LogClearRunner run periodically by 
default 30m, but below logic looks like a bug:</p>
   <div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
   <pre class="code-java">
   <span class="code-keyword">if</span> (!expiredTopic.isEmpty()) {
       logger.info(<span class="code-quote">"Log Clear Scheduler finished file 
delete!"</span>);
   }
   </pre>
   </div></div>
   <p>It should be:</p>
   <div class="code panel" style="border-width: 1px;"><div class="codeContent 
panelContent">
   <pre class="code-java">
   <span class="code-keyword">if</span> (expiredTopic.isEmpty()) {
       logger.info(<span class="code-quote">"Log Clear Scheduler finished file 
delete!"</span>);
   }
   </pre>
   </div></div>
   
   <p>2. Format BrokerDefMetadata, make the comment aligned</p>
   <i>JIRA link - <a 
href="https://issues.apache.org/jira/browse/INLONG-81";>[INLONG-81]</a> created 
by technoboy</i>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to