Github user jbertram commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/2222#discussion_r208297490
--- Diff:
artemis-journal/src/main/java/org/apache/activemq/artemis/core/io/AbstractSequentialFileFactory.java
---
@@ -224,8 +224,10 @@ public void releaseBuffer(final ByteBuffer buffer) {
@Override
public void createDirs() throws Exception {
boolean ok = journalDir.mkdirs();
- if (!ok) {
- throw new IOException("Failed to create directory " + journalDir);
+ if (!ok && !journalDir.exists()) {
--- End diff --
If the directory already exists then `mkdirs()` will return false, but that
shouldn't be treated as an error therefore the `if` tests both conditions.
---