Temp SSTable Generation increases by two, instead of one
--------------------------------------------------------

                 Key: CASSANDRA-335
                 URL: https://issues.apache.org/jira/browse/CASSANDRA-335
             Project: Cassandra
          Issue Type: Bug
    Affects Versions: 0.4
            Reporter: Chris Goffinet
            Assignee: Chris Goffinet
            Priority: Trivial
             Fix For: 0.4


String getTempSSTableFileName()
    {
        fileIndexGenerator_.incrementAndGet();

        return String.format("%s-%s-%s-Data.db",
                             columnFamily_, SSTable.TEMPFILE_MARKER, 
fileIndexGenerator_.incrementAndGet());
    }

It's incrementing twice. Remove the first one since the return is already 
calling it.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to