You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@inlong.apache.org by GitBox <gi...@apache.org> on 2021/07/28 11:15:49 UTC

[GitHub] [incubator-inlong] dockerzhang opened a new issue #680: [INLONG-81] Fix LogClearRunner bug && format BrokerDefMetadata

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: dev-unsubscribe@inlong.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-inlong] dockerzhang closed issue #680: [INLONG-81] Fix LogClearRunner bug && format BrokerDefMetadata

Posted by GitBox <gi...@apache.org>.
dockerzhang closed issue #680:
URL: https://github.com/apache/incubator-inlong/issues/680


   


-- 
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: dev-unsubscribe@inlong.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org