You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@community.apache.org by "Sebb (JIRA)" <ji...@apache.org> on 2015/07/03 14:09:04 UTC

[jira] [Commented] (COMDEV-128) reporter: cannot remove entries from release database

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

Sebb commented on COMDEV-128:
-----------------------------

This appears to be because 1970-01-01 has the value 0 when converted to seconds since the epoch. The Python code uses the following conditional check:

if date and version and committee:

This will be false if date is zero, so the code to update the release data is not invoked.

The check should probably be

if date != None and version and committee:

and the update code would need to be amended to remove the entry if the date is 0.

Note that dates before 1999-01-01 are not displayed by the code, but they are still counted.





> reporter: cannot remove entries from release database
> -----------------------------------------------------
>
>                 Key: COMDEV-128
>                 URL: https://issues.apache.org/jira/browse/COMDEV-128
>             Project: Community Development
>          Issue Type: Bug
>          Components: Reporter Tool
>            Reporter: Sebb
>
> The releases page
> https://reporter.apache.org/addrelease.html?<pmc>
> states that one can remove a release by entering a date of 1970-01-01.
> However this does not work.
> How can one remove incorrect entries?



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