fredia commented on code in PR #20091: URL: https://github.com/apache/flink/pull/20091#discussion_r911611532
########## flink-runtime/src/main/java/org/apache/flink/runtime/state/filesystem/FsCheckpointStorageAccess.java: ########## @@ -113,8 +113,12 @@ public boolean supportsHighlyAvailableStorage() { @Override public void initializeBaseLocationsForCheckpoint() throws IOException { - fileSystem.mkdirs(sharedStateDirectory); - fileSystem.mkdirs(taskOwnedStateDirectory); + if (!fileSystem.mkdirs(sharedStateDirectory)) { + throw new IOException("Failed to mkdir for sharedStateDirectory."); Review Comment: nit: add `sharedStateDirectory` path in the IOException message. -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org