dockerzhang opened a new issue #673:
URL: https://github.com/apache/incubator-inlong/issues/673
<p>1. fix typo<br/>
BDB_TOPIC_AUTHCONTROL_STORE_NAME -> BDB_TOPIC_AUTH_CONTROL_STORE_NAME<br/>
tmpbdbEntity -> tmpBdbEntity<br/>
2. HelperNode is dynamic :</p>
<div class="code panel" style="border-width: 1px;"><div class="codeContent
panelContent">
<pre class="code-java">
Set<InetSocketAddress> helpers = <span class="code-keyword">new</span>
HashSet<InetSocketAddress>();
InetSocketAddress helper1 = <span class="code-keyword">new</span>
InetSocketAddress(<span class="code-keyword">this</span>.nodeHost, 9005);
InetSocketAddress helper2 = <span class="code-keyword">new</span>
InetSocketAddress(<span class="code-keyword">this</span>.nodeHost, 9006);
InetSocketAddress helper3 = <span class="code-keyword">new</span>
InetSocketAddress(<span class="code-keyword">this</span>.nodeHost, 9007);
helpers.add(helper1);
helpers.add(helper2);
helpers.add(helper3);
</pre>
</div></div>
<p>to </p>
<div class="code panel" style="border-width: 1px;"><div class="codeContent
panelContent">
<pre class="code-java">
<span class="code-keyword">for</span>(<span class="code-object">int</span> i
= 1; i <= 3; i++){
InetSocketAddress helper = <span class="code-keyword">new</span>
InetSocketAddress(<span class="code-keyword">this</span>.nodeHost,
bdbConfig.getBdbNodePort() + i);
helpers.add(helper);
}
</pre>
</div></div>
<p>3. add volatile <br/>
change</p>
<div class="code panel" style="border-width: 1px;"><div class="codeContent
panelContent">
<pre class="code-java">
<span class="code-keyword">private</span> <span
class="code-object">boolean</span> isMaster;
</pre>
</div></div>
<p>to </p>
<div class="code panel" style="border-width: 1px;"><div class="codeContent
panelContent">
<pre class="code-java">
<span class="code-keyword">private</span> <span
class="code-keyword">volatile</span> <span class="code-object">boolean</span>
isMaster;
</pre>
</div></div>
<p>4. remove isStopped and param of getEnvironment</p>
<i>JIRA link - <a
href="https://issues.apache.org/jira/browse/INLONG-74">[INLONG-74]</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]