coderzc commented on code in PR #16847:
URL: https://github.com/apache/pulsar/pull/16847#discussion_r934111965
##########
pulsar-metadata/src/main/java/org/apache/pulsar/metadata/bookkeeper/BKCluster.java:
##########
@@ -197,13 +197,13 @@ protected void cleanupTempDirs() throws Exception {
}
}
- private ServerConfiguration newServerConfiguration() throws Exception {
+ private ServerConfiguration newServerConfiguration(int index) throws
Exception {
File dataDir;
if (clusterConf.dataDir != null) {
dataDir = new File(clusterConf.dataDir);
} else {
// Use temp dir and clean it up later
- dataDir = createTempDir("bookie", "test");
+ dataDir = createTempDir("bookie", index + "test");
Review Comment:
Ok, I updated it
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]