You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Philip Thompson (JIRA)" <ji...@apache.org> on 2015/07/29 16:04:04 UTC

[jira] [Updated] (CASSANDRA-9915) IndexError('list index out of range') when trying to connect to Cassandra cluster with cqlsh

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

Philip Thompson updated CASSANDRA-9915:
---------------------------------------
    Description: 
Cassandra by default uses a Python driver to connect

{code}
>>> cluster = Cluster(['IP'], protocol_version=3)
>>> session = cluster.connect()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/lib/python2.7/dist-packages/cassandra/cluster.py", line 839, in connect
    self.control_connection.connect()
  File "/usr/local/lib/python2.7/dist-packages/cassandra/cluster.py", line 2075, in connect
    self._set_new_connection(self._reconnect_internal())
  File "/usr/local/lib/python2.7/dist-packages/cassandra/cluster.py", line 2110, in _reconnect_internal
    raise NoHostAvailable("Unable to connect to any servers", errors)
cassandra.cluster.NoHostAvailable: ('Unable to connect to any servers', {'IP': IndexError('list index out of range',)})
{code}


  was:
Cassandra by default uses a Python driver to connect

>>> cluster = Cluster(['IP'], protocol_version=3)
>>> session = cluster.connect()

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/lib/python2.7/dist-packages/cassandra/cluster.py", line 839, in connect
    self.control_connection.connect()
  File "/usr/local/lib/python2.7/dist-packages/cassandra/cluster.py", line 2075, in connect
    self._set_new_connection(self._reconnect_internal())
  File "/usr/local/lib/python2.7/dist-packages/cassandra/cluster.py", line 2110, in _reconnect_internal
    raise NoHostAvailable("Unable to connect to any servers", errors)
cassandra.cluster.NoHostAvailable: ('Unable to connect to any servers', {'IP': IndexError('list index out of range',)})




> IndexError('list index out of range') when trying to connect to Cassandra cluster with cqlsh
> --------------------------------------------------------------------------------------------
>
>                 Key: CASSANDRA-9915
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-9915
>             Project: Cassandra
>          Issue Type: Bug
>          Components: Core
>         Environment: Ubuntu, Cassandra 2.5.1, Python 2.7.3
>            Reporter: Prabir Kr Sarkar
>            Priority: Critical
>              Labels: cqlsh
>
> Cassandra by default uses a Python driver to connect
> {code}
> >>> cluster = Cluster(['IP'], protocol_version=3)
> >>> session = cluster.connect()
> Traceback (most recent call last):
>   File "<stdin>", line 1, in <module>
>   File "/usr/local/lib/python2.7/dist-packages/cassandra/cluster.py", line 839, in connect
>     self.control_connection.connect()
>   File "/usr/local/lib/python2.7/dist-packages/cassandra/cluster.py", line 2075, in connect
>     self._set_new_connection(self._reconnect_internal())
>   File "/usr/local/lib/python2.7/dist-packages/cassandra/cluster.py", line 2110, in _reconnect_internal
>     raise NoHostAvailable("Unable to connect to any servers", errors)
> cassandra.cluster.NoHostAvailable: ('Unable to connect to any servers', {'IP': IndexError('list index out of range',)})
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)