We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dae8363 + 33cb870 commit 114ae17Copy full SHA for 114ae17
src/main/java/org/apache/hadoop/fs/glusterfs/GlusterVolume.java
@@ -113,8 +113,10 @@ public void setConf(Configuration conf){
113
String vol = conf.get("fs.glusterfs.volume.fuse." + v[i] , null);
114
115
if(vol==null){
116
- log.error("Could not find property: fs.glusterfs.fuse." + v[i]);
117
- throw new RuntimeException("Could not find mount point for volume: "+ v[i]);
+ log.error("Invalid volume name: " + v[i]
+ + ", No such property: fs.glusterfs.fuse." + v[i]);
118
+ throw new RuntimeException("Invalid volume name: " + v[i]
119
+ + ", No mount point available for the volume.");
120
}
121
volumes.put(v[i],vol);
122
log.info("Gluster volume: " + v[i] + " at : " + volumes.get(v[i]));
0 commit comments