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

Leonard Ma commented on CASSANDRA-17433:
----------------------------------------

Hmm, there seems to be a few failures from the Jenkins and CI J8 run.

CI J8 test:

The one test that is failing also seems to have a flaky annotation on this test 
so I guess this test does not consistently pass?  I seem to get a similar 
behavior when I run it locally.  From what I can tell, it looks unrelated to 
the changes in this ticket.

For the Jenkins run:

IndexSummaryTest - Is failing consistently according to Butler and has a ticket 
open for it - https://issues.apache.org/jira/browse/CASSANDRA-18423 

TestJMX.test_netstats - Also looks unrelated to the changes in this ticket and 
seems to be consistently passing when I run it locally many times

Cql_test & NetstatsRepairStreamingTest - Running into some issues trying to run 
these tests locally so will need to see if I can resolve them tomorrow, but 
from a glance, the only one that might be related to the changes in this ticket 
is the 'test_timestamp_and_ttl' test.

> Revise use of pytz in Python >= 3.9 
> ------------------------------------
>
>                 Key: CASSANDRA-17433
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-17433
>             Project: Cassandra
>          Issue Type: Task
>          Components: CQL/Interpreter
>            Reporter: Brad Schoening
>            Assignee: Leonard Ma
>            Priority: Low
>             Fix For: 5.x
>
>          Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> PEP 615 – Support for the IANA Time Zone Database in the Standard Library 
> class ZoneInfo
> PEP 615 (Python 3.9) has obsoleted the 3rd party Olsen tz library 'pytz' with 
> support for the IANA Time Zone Database.  The code which imports this in 
> cqlshmain.py and tests in 
> [test_cqlsh_output.py|https://github.com/apache/cassandra/pull/1493/files/9c658a20c669d11a54ecc6b42ba083da13de0103#diff-f5a3955faadf50a1292df481044b83cefc44b2dac46676022c80bad076491a50]
>  should be updated accordingly.
> This can be done with something like:
> if sys.version_info >= (3,9):
>     try:
>         import zoneinfo
> else:
>     try:
>         import pytz
>         ...



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

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

Reply via email to