name commitlog sync and writer threads. patch by Sammy Yu; reviewed by 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
This commit is contained in:
Jonathan Ellis 2009-09-03 15:03:46 +00:00
parent 6e64cfb948
commit bb2b7eef43
2 changed files with 2 additions and 2 deletions

View File

@ -214,7 +214,7 @@ public class CommitLog
}
}
}
}).start();
}, "PERIODIC-COMMIT-LOG-SYNCER").start();
}
}
}

View File

@ -65,7 +65,7 @@ public class CommitLogExecutorService extends AbstractExecutorService implements
}
}
};
new Thread(runnable).start();
new Thread(runnable, "COMMIT-LOG-WRITER").start();
MBeanServer mbs = ManagementFactory.getPlatformMBeanServer();
try