summaryrefslogtreecommitdiffstats
path: root/jrt/src
diff options
context:
space:
mode:
Diffstat (limited to 'jrt/src')
-rw-r--r--jrt/src/com/yahoo/jrt/MandatoryMethods.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/jrt/src/com/yahoo/jrt/MandatoryMethods.java b/jrt/src/com/yahoo/jrt/MandatoryMethods.java
index 19b2febf0de..b1355c0fb1e 100644
--- a/jrt/src/com/yahoo/jrt/MandatoryMethods.java
+++ b/jrt/src/com/yahoo/jrt/MandatoryMethods.java
@@ -2,6 +2,8 @@
package com.yahoo.jrt;
+import com.yahoo.security.tls.CapabilitySet;
+
import java.util.Collection;
@@ -15,6 +17,7 @@ class MandatoryMethods {
Method m;
//---------------------------------------------------------------------
m = new Method("frt.rpc.ping", "", "", this::ping);
+ m.requireCapabilities(CapabilitySet.none());
m.methodDesc("Method that may be used to "
+ "check if the server is online");
parent.addMethod(m);