summaryrefslogtreecommitdiffstats
path: root/jrt
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@yahooinc.com>2023-02-17 15:51:40 +0100
committerBjørn Christian Seime <bjorncs@yahooinc.com>2023-02-17 15:51:56 +0100
commit6227e58208c4f9c729de967c70101407ee82f963 (patch)
treebaf0ea10b9809558263aa2f2935522157e526d36 /jrt
parent8613fd8b9deaa736f25d0271f808e178568eb1fe (diff)
Remove capability requirement on 'frt.rpc.ping' for now
Diffstat (limited to 'jrt')
-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);