Merge branch 'cassandra-1.1' into trunk

This commit is contained in:
Jonathan Ellis 2012-04-13 10:35:42 -05:00
commit 2914f15a00
5 changed files with 11 additions and 9 deletions

View File

@ -30,3 +30,4 @@ doc/cql/CQL*
build.properties.default
test/data/legacy-sstables/**
examples/pig/**
examples/hadoop_word_count/conf/log4j.properties

View File

@ -35,7 +35,7 @@
* Move CfDef and KsDef validation out of thrift (CASSANDRA-4037)
* Fix get_paged_slice (CASSANDRA-4136)
* CQL3: Support slice with exclusive start and stop (CASSANDRA-3785)
Merged from 1.0:
* support PropertyFileSnitch in bulk loader (CASSANDRA-4145)
* add auto_snapshot option allowing disabling snapshot before drop/truncate
(CASSANDRA-3710)
* allow short snitch names (CASSANDRA-4130)
@ -75,12 +75,6 @@ Merged from 1.0:
1.0.9
=======
* (CLI) properly handle quotes in create/update keyspace commands (CASSANDRA-4129)
1.0.9
>>>>>>> cassandra-1.0
* improve index sampling performance (CASSANDRA-4023)
* always compact away deleted hints immediately after handoff (CASSANDRA-3955)
* delete hints from dropped ColumnFamilies on handoff instead of

View File

@ -25,7 +25,7 @@
<property name="debuglevel" value="source,lines,vars"/>
<!-- default version and SCM information -->
<property name="base.version" value="1.1.0-beta2"/>
<property name="base.version" value="1.1.0-rc1"/>
<property name="scm.connection" value="scm:git://git.apache.org/cassandra.git"/>
<property name="scm.developerConnection" value="scm:git://git.apache.org/cassandra.git"/>
<property name="scm.url" value="http://git-wip-us.apache.org/repos/asf?p=cassandra.git;a=tree"/>

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
cassandra (1.1.0~rc1) unstable; urgency=low
* New Release Candidate
-- Sylvain Lebresne <slebresne@apache.org> Thu, 12 Apr 2012 09:59:27 +0200
cassandra (1.1.0~beta2) unstable; urgency=low
* New beta release

View File

@ -167,6 +167,7 @@ public class PropertyFileSnitch extends AbstractNetworkTopologySnitch
logger.debug("loaded network topology {}", FBUtilities.toString(reloadedMap));
endpointMap = reloadedMap;
StorageService.instance.getTokenMetadata().invalidateCaches();
if (StorageService.instance != null) // null check tolerates circular dependency; see CASSANDRA-4145
StorageService.instance.getTokenMetadata().invalidateCaches();
}
}