Package com.netflix.priam.agent.tasks

Examples of com.netflix.priam.agent.tasks.AgentTask.execute()


        MockAgentConfiguration configuration = new MockAgentConfiguration("localhost");
        AgentProcessManager processManager = new AgentProcessManager(new AgentProcessMap(AgentProcessMap.buildDefaultMap()), configuration, nodeStatus);
        try
        {
            AgentTask agentTask = new AgentTask(configuration, processManager, nodeStatus, storage);
            agentTask.execute();

            String value = storage.getData().values().iterator().next();
            JSONObject obj = new JSONObject(value);
            JSONObject info = obj.getJSONObject("info");
            Assert.assertNotNull(info);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.