mirror of https://github.com/apache/cassandra
Allow Cassandra config to be updated to restart Daemon without unloading classes
Patch by Emmanuel Hugonnet, reviewed by aweisberg for CASSANDRA-9046
This commit is contained in:
parent
d19a6af667
commit
4a3ca5c70e
|
|
@ -1,4 +1,5 @@
|
|||
3.0
|
||||
* Allow cassandra config to be updated to restart daemon without unloading classes (CASSANDRA-9046)
|
||||
* Don't initialize compaction writer before checking if iter is empty (CASSANDRA-9117)
|
||||
* Remove line number generation from default logback.xml
|
||||
* Don't execute any functions at prepare-time (CASSANDRA-9037)
|
||||
|
|
|
|||
|
|
@ -326,7 +326,7 @@
|
|||
<dependency groupId="commons-codec" artifactId="commons-codec" version="1.2"/>
|
||||
<dependency groupId="org.apache.commons" artifactId="commons-lang3" version="3.1"/>
|
||||
<dependency groupId="org.apache.commons" artifactId="commons-math3" version="3.2"/>
|
||||
<dependency groupId="com.googlecode.concurrentlinkedhashmap" artifactId="concurrentlinkedhashmap-lru" version="1.3"/>
|
||||
<dependency groupId="com.googlecode.concurrentlinkedhashmap" artifactId="concurrentlinkedhashmap-lru" version="1.4"/>
|
||||
<dependency groupId="org.antlr" artifactId="antlr" version="3.5.2">
|
||||
<exclusion groupId="org.antlr" artifactId="stringtemplate"/>
|
||||
</dependency>
|
||||
|
|
|
|||
|
|
@ -254,7 +254,7 @@ public class DatabaseDescriptor
|
|||
}
|
||||
}
|
||||
|
||||
private static void applyConfig(Config config) throws ConfigurationException
|
||||
public static void applyConfig(Config config) throws ConfigurationException
|
||||
{
|
||||
conf = config;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue