merge from 0.8.1

git-svn-id: https://svn.apache.org/repos/asf/cassandra/trunk@1101777 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sylvain Lebresne 2011-05-11 07:28:22 +00:00
commit 1253324f9e
2 changed files with 8 additions and 1 deletions

View File

@ -56,6 +56,8 @@
* improve ignoring of obsolete mutations in index maintenance (CASSANDRA-2401)
* recognize attempt to drop just the index while leaving the column
definition alone (CASSANDRA-2619)
* Fix regression where bootstrapping a node with no schema fails
(CASSANDRA-2625)
0.8.0-beta1

View File

@ -458,7 +458,12 @@ public class StorageService implements IEndpointStateChangeSubscriber, StorageSe
bootstrap(token);
assert !isBootstrapMode; // bootstrap will block until finished
}
// else nothing to do, go directly to participating in ring
else
{
// nothing to bootstrap, go directly to participating in ring
SystemTable.setBootstrapped(true);
setToken(token);
}
}
else
{