From 98dabb6408435f0e29e678522187a59055441739 Mon Sep 17 00:00:00 2001 From: Greg Farnum Date: Thu, 27 Aug 2009 16:24:16 -0700 Subject: [PATCH] Hadoop: Insert accidentally removed throwaway first argument to ceph --- src/client/hadoop/ceph/CephFileSystem.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/hadoop/ceph/CephFileSystem.java b/src/client/hadoop/ceph/CephFileSystem.java index 07a402325fbac..60f59ef4fefec 100644 --- a/src/client/hadoop/ceph/CephFileSystem.java +++ b/src/client/hadoop/ceph/CephFileSystem.java @@ -129,7 +129,7 @@ public class CephFileSystem extends FileSystem { fs_default_name = conf.get("fs.default.name"); debug = ("true".equals(conf.get("fs.ceph.debug", "false"))); //build up the arguments for Ceph - String arguments = new String(); + String arguments = new String("CephFSInterface"); arguments += conf.get("fs.ceph.commandLine", ""); if (conf.get("fs.ceph.clientDebug") != null) { arguments += " --debug_client "; -- 2.39.5