You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Jordan West (JIRA)" <ji...@apache.org> on 2018/03/02 20:34:00 UTC

[jira] [Assigned] (CASSANDRA-14285) Comma at the end of the end of the seed list is interpretated as localhost

     [ https://issues.apache.org/jira/browse/CASSANDRA-14285?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jordan West reassigned CASSANDRA-14285:
---------------------------------------

    Assignee: Jordan West

> Comma at the end of the end of the seed list is interpretated as localhost
> --------------------------------------------------------------------------
>
>                 Key: CASSANDRA-14285
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-14285
>             Project: Cassandra
>          Issue Type: Bug
>          Components: Configuration
>            Reporter: Marco
>            Assignee: Jordan West
>            Priority: Minor
>
> Seeds: '10.1.20.10,10.1.21.10,10.1.22.10,'  cause a flood of the debug log with messages like this one.
> DEBUG [MessagingService-Outgoing-localhost/127.0.0.1-Gossip] 2018-02-28 15:53:57,314 OutboundTcpConnection.java:545 - Unable to connect to localhost/[127.0.0.1|http://127.0.0.1/]
> This code provide by Nicolas Guyomar provide the reason of the issue.
> In SImpleSeedProvider : 
>  
> String[] hosts = "10.1.20.10,10.1.21.10,10.1.22.10,".split(",", -1);
> List<InetAddress> seeds = new ArrayList<InetAddress>(hosts.length);
> for (String host : hosts)
> {
> System.out.println(InetAddress.getByName(host.trim()));
> }
>  
> output : 
> /[10.1.20.10|http://10.1.20.10/]
> /[10.1.21.10|http://10.1.21.10/]
> /[10.1.22.10|http://10.1.22.10/]
> localhost/[127.0.0.1|http://127.0.0.1/]



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

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cassandra.apache.org
For additional commands, e-mail: commits-help@cassandra.apache.org