From 552148e9e7d45be4d298ee48afd7471405a5bfad Mon Sep 17 00:00:00 2001 From: Puspendu Banerjee Date: Fri, 17 Mar 2017 13:54:40 -0500 Subject: [PATCH] NIFI-3579: Incorporated Review comments. This closes #1602. --- .../nifi/controller/repository/FileSystemRepository.java | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/repository/FileSystemRepository.java b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/repository/FileSystemRepository.java index b899a36065..eaa2cbc204 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/repository/FileSystemRepository.java +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/repository/FileSystemRepository.java @@ -387,7 +387,7 @@ public class FileSystemRepository implements ContentRepository { } long capacity = path.toFile().getTotalSpace(); if(capacity==0) { - throw new RuntimeException("System returned total space of the partition for " + containerName + " is zero byte. Nifi can not create a zero sized FileSystemRepository"); + throw new IOException("System returned total space of the partition for " + containerName + " is zero byte. Nifi can not create a zero sized FileSystemRepository"); } return capacity; @@ -399,11 +399,7 @@ public class FileSystemRepository implements ContentRepository { if (path == null) { throw new IllegalArgumentException("No container exists with name " + containerName); } - long usableSpace=path.toFile().getUsableSpace(); - if(usableSpace==0) { - throw new RuntimeException("System returned usable space of the partition for " + containerName + " is zero byte. Nifi can not create a zero sized FileSystemRepository"); - } - return usableSpace; + return path.toFile().getUsableSpace(); } @Override