Skip to content

Commit

Permalink
name commitlog sync and writer threads. patch by Sammy Yu; reviewed b…
Browse files Browse the repository at this point in the history
…y jbellis for CASSANDRA-419

git-svn-id: https://svn.apache.org/repos/asf/incubator/cassandra/branches/cassandra-0.4@810984 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
jbellis committed Sep 3, 2009
1 parent 6e64cfb commit bb2b7ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/java/org/apache/cassandra/db/CommitLog.java
Expand Up @@ -214,7 +214,7 @@ public void run()
}
}
}
}).start();
}, "PERIODIC-COMMIT-LOG-SYNCER").start();
}
}
}
Expand Down
Expand Up @@ -65,7 +65,7 @@ public void run()
}
}
};
new Thread(runnable).start();
new Thread(runnable, "COMMIT-LOG-WRITER").start();

MBeanServer mbs = ManagementFactory.getPlatformMBeanServer();
try
Expand Down

0 comments on commit bb2b7ee

Please sign in to comment.