Skip to content

Commit

Permalink
Merge branch 'cassandra-2.1' into cassandra-2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
thobbs committed Feb 22, 2017
2 parents 7841908 + 3c2f876 commit 15e71ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
2.2.10
* Fix ColumnCounter::countAll behaviour for reverse queries (CASSANDRA-13222)
* Exceptions encountered calling getSeeds() breaks OTC thread (CASSANDRA-13018)
Merged from 2.1:
* Log stacktrace of uncaught exceptions (CASSANDRA-13108)

2.2.9
* Coalescing strategy sleeps too much (CASSANDRA-13090)
Expand Down
4 changes: 2 additions & 2 deletions src/java/org/apache/cassandra/service/CassandraDaemon.java
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ protected void setup()
public void uncaughtException(Thread t, Throwable e)
{
StorageMetrics.exceptions.inc();
logger.error("Exception in thread {}", t, e);
logger.error("Exception in thread " + t, e);
Tracing.trace("Exception in thread {}", t, e);
for (Throwable e2 = e; e2 != null; e2 = e2.getCause())
{
Expand All @@ -201,7 +201,7 @@ public void uncaughtException(Thread t, Throwable e)
if (e2 instanceof FSError)
{
if (e2 != e) // make sure FSError gets logged exactly once.
logger.error("Exception in thread {}", t, e2);
logger.error("Exception in thread " + t, e2);
FileUtils.handleFSError((FSError) e2);
}

Expand Down

0 comments on commit 15e71ba

Please sign in to comment.