aboutsummaryrefslogtreecommitdiff
path: root/exec/java-exec/src/main/java/org/apache/drill/exec/rpc
diff options
context:
space:
mode:
authorKunal Khatua <kunal@apache.org>2018-08-28 15:45:58 -0700
committerSorabh Hamirwasia <sorabh@apache.org>2018-08-30 14:44:12 -0700
commit14a7363679ecb8720cbed80235cf070f52696eab (patch)
treef1f16f589cf0509a7599b02db214d146b49d2f0a /exec/java-exec/src/main/java/org/apache/drill/exec/rpc
parent2b5b75965ae02e8d2f3c10b956198e43987776ce (diff)
DRILL-5735: UI options grouping and filtering & Metrics hints
Allow search/sort in the Options webUI Additional details, like the description is provided as well in a JScript lookup map. This helps reduce the need for the server to constantly recreate the entire page with the description details, as the client browser can fill in these details. Developers will be expected to update the description as old/new options are introduced or deprecated. System table options_val also carries the description, albeit a 'shorter' version. closes #1279
Diffstat (limited to 'exec/java-exec/src/main/java/org/apache/drill/exec/rpc')
-rw-r--r--exec/java-exec/src/main/java/org/apache/drill/exec/rpc/user/InboundImpersonationManager.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/exec/java-exec/src/main/java/org/apache/drill/exec/rpc/user/InboundImpersonationManager.java b/exec/java-exec/src/main/java/org/apache/drill/exec/rpc/user/InboundImpersonationManager.java
index 37142204b..cf0afcfd6 100644
--- a/exec/java-exec/src/main/java/org/apache/drill/exec/rpc/user/InboundImpersonationManager.java
+++ b/exec/java-exec/src/main/java/org/apache/drill/exec/rpc/user/InboundImpersonationManager.java
@@ -88,7 +88,7 @@ public class InboundImpersonationManager {
public static class InboundImpersonationPolicyValidator extends StringValidator {
public InboundImpersonationPolicyValidator(String name) {
- super(name);
+ super(name, null);
}
@Override