aboutsummaryrefslogtreecommitdiffstats
path: root/config-proxy/src/test
diff options
context:
space:
mode:
authorHarald Musum <musum@yahooinc.com>2021-12-06 19:40:17 +0100
committerHarald Musum <musum@yahooinc.com>2021-12-06 19:40:17 +0100
commitc4aa35c9c75a511eb7322ac167d0a962e349e55e (patch)
tree9b1f2803101f383dd0a15f368f22e02442664489 /config-proxy/src/test
parent091a90a1b5a4db8ade3369c7c416a4e02491bbb9 (diff)
Remove undocumented RPC command that has never been used
Diffstat (limited to 'config-proxy/src/test')
-rw-r--r--config-proxy/src/test/java/com/yahoo/vespa/config/proxy/ConfigProxyRpcServerTest.java16
1 files changed, 1 insertions, 15 deletions
diff --git a/config-proxy/src/test/java/com/yahoo/vespa/config/proxy/ConfigProxyRpcServerTest.java b/config-proxy/src/test/java/com/yahoo/vespa/config/proxy/ConfigProxyRpcServerTest.java
index 1bcf8d5d8be..fbe7a6c74d9 100644
--- a/config-proxy/src/test/java/com/yahoo/vespa/config/proxy/ConfigProxyRpcServerTest.java
+++ b/config-proxy/src/test/java/com/yahoo/vespa/config/proxy/ConfigProxyRpcServerTest.java
@@ -133,7 +133,7 @@ public class ConfigProxyRpcServerTest {
}
/**
- * Tests printStatistics RPC command
+ * Tests listSourceConnections RPC command
*/
@Test
public void testRpcMethodListSourceConnections() throws ListenFailedException {
@@ -151,20 +151,6 @@ public class ConfigProxyRpcServerTest {
}
/**
- * Tests printStatistics RPC command
- */
- @Test
- public void testRpcMethodPrintStatistics() {
- Request req = new Request("printStatistics");
- client.invoke(req);
- assertFalse(req.errorMessage(), req.isError());
- assertThat(req.returnValues().size(), is(1));
- assertThat(req.returnValues().get(0).asString(), is("\n" +
- "Delayed responses queue size: 0\n" +
- "Contents: "));
- }
-
- /**
* Tests invalidateCache RPC command
*/
@Test