summaryrefslogtreecommitdiffstats
path: root/service-monitor/src/test/scala/PrintServiceStates.scala
diff options
context:
space:
mode:
Diffstat (limited to 'service-monitor/src/test/scala/PrintServiceStates.scala')
-rw-r--r--service-monitor/src/test/scala/PrintServiceStates.scala24
1 files changed, 0 insertions, 24 deletions
diff --git a/service-monitor/src/test/scala/PrintServiceStates.scala b/service-monitor/src/test/scala/PrintServiceStates.scala
deleted file mode 100644
index 02a9f5d89ec..00000000000
--- a/service-monitor/src/test/scala/PrintServiceStates.scala
+++ /dev/null
@@ -1,24 +0,0 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-import com.yahoo.config.subscription.ConfigSourceSet
-import com.yahoo.vespa.config.GenerationCounter
-import com.yahoo.vespa.applicationmodel.HostName
-import com.yahoo.vespa.service.monitor.SlobrokAndConfigIntersector
-
-/**
- * Quick hack to just see some results.
- *
- * @author bakksjo
- */
-object PrintServiceStates {
- def main(args: Array[String]): Unit = {
- val intersector = new SlobrokAndConfigIntersector(
- new ConfigSourceSet("tcp/test1-node:19070"),
- multiTenantConfigServerHostNames = Set("config-server1", "config-server2").map(s => new HostName(s)),
- new GenerationCounter {
- override def increment = ???
- override def get = 1L
- })
- Thread.sleep(100000)
- intersector.deconstruct()
- }
-}