You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by ja...@apache.org on 2014/06/11 05:52:21 UTC

[36/61] [abbrv] git commit: Do not uppercase storage plugin configuration names.

Do not uppercase storage plugin configuration names.


Project: http://git-wip-us.apache.org/repos/asf/incubator-drill/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-drill/commit/ffdeab09
Tree: http://git-wip-us.apache.org/repos/asf/incubator-drill/tree/ffdeab09
Diff: http://git-wip-us.apache.org/repos/asf/incubator-drill/diff/ffdeab09

Branch: refs/heads/master
Commit: ffdeab09a0b2ddb6fe65b4ccb5fc27e7e0c0e7d8
Parents: 292c2d1
Author: Aditya Kishore <ad...@maprtech.com>
Authored: Sat Jun 7 13:35:26 2014 -0700
Committer: Jacques Nadeau <ja...@apache.org>
Committed: Sun Jun 8 19:13:06 2014 -0700

----------------------------------------------------------------------
 .../java/org/apache/drill/exec/server/rest/StorageResources.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-drill/blob/ffdeab09/exec/java-exec/src/main/java/org/apache/drill/exec/server/rest/StorageResources.java
----------------------------------------------------------------------
diff --git a/exec/java-exec/src/main/java/org/apache/drill/exec/server/rest/StorageResources.java b/exec/java-exec/src/main/java/org/apache/drill/exec/server/rest/StorageResources.java
index d67f06b..244d8a8 100644
--- a/exec/java-exec/src/main/java/org/apache/drill/exec/server/rest/StorageResources.java
+++ b/exec/java-exec/src/main/java/org/apache/drill/exec/server/rest/StorageResources.java
@@ -61,7 +61,7 @@ public class StorageResources {
 
     List<String> names = Lists.newArrayList();
     for (Map.Entry<String, StoragePluginConfig> config : storage.getStore()) {
-      names.add(config.getKey().toUpperCase());
+      names.add(config.getKey());
     }
 
     return new Viewable("/rest/storage/list.ftl", names);