Github user chandrasaripaka commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2161#discussion_r241939242
--- Diff:
core/src/main/java/org/apache/carbondata/core/datastore/impl/FileFactory.java
---
@@ -432,7 +437,7 @@ public static long getDirectorySize(String filePath)
throws IOException {
case VIEWFS:
case S3:
Path path = new Path(filePath);
- FileSystem fs = path.getFileSystem(getConfiguration());
+ FileSystem fs = path.getFileSystem(configuration);
--- End diff --
Resolved.
---