You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Alexey Filippov (JIRA)" <ji...@apache.org> on 2014/05/01 23:34:18 UTC

[jira] [Commented] (CASSANDRA-5964) cqlsh raises a ValueError when connecting to Cassandra running in Eclipse

    [ https://issues.apache.org/jira/browse/CASSANDRA-5964?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13987021#comment-13987021 ] 

Alexey Filippov commented on CASSANDRA-5964:
--------------------------------------------

That's interesting, the HEAD at the moment of writing (c2579b92bf2e721c099720a27b5d9e56be66e49c):
{code}
$ ./cqlsh
Traceback (most recent call last):
  File "./cqlsh", line 1855, in <module>
    main(*read_options(sys.argv[1:], os.environ))
  File "./cqlsh", line 1841, in main
    ssl=options.ssl)
  File "./cqlsh", line 490, in __init__
    self.get_connection_versions()
  File "./cqlsh", line 578, in get_connection_versions
    self.cass_ver_tuple = tuple(map(int, vers['build'].split('-', 1)[0].split('.')[:3]))
ValueError: invalid literal for int() with base 10: 'Unknown'
{code}

So it does not appear to be fixed in HEAD or, it seems, 2.1.

> cqlsh raises a ValueError when connecting to Cassandra running in Eclipse
> -------------------------------------------------------------------------
>
>                 Key: CASSANDRA-5964
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-5964
>             Project: Cassandra
>          Issue Type: Bug
>            Reporter: Greg DeAngelis
>            Assignee: Dave Brosius
>            Priority: Minor
>             Fix For: 2.0.1
>
>         Attachments: 5964.txt
>
>
> The release_version is set to 'Unknown' in system.local so the version parsing logic fails.
> Traceback (most recent call last):
>   File "./cqlsh", line 2027, in <module>
>     main(*read_options(sys.argv[1:], os.environ))
>   File "./cqlsh", line 2013, in main
>     display_float_precision=options.float_precision)
>   File "./cqlsh", line 486, in __init__
>     self.get_connection_versions()
>   File "./cqlsh", line 580, in get_connection_versions
>     self.cass_ver_tuple = tuple(map(int, vers['build'].split('-', 1)[0].split('.')[:3]))
> ValueError: invalid literal for int() with base 10: 'Unknown'



--
This message was sent by Atlassian JIRA
(v6.2#6252)