diff options
author | Martin <marcin.j.chrzanowski@gmail.com> | 2020-01-11 18:25:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-11 18:25:10 +0100 |
commit | 0c94ea210579436f5a1723117f83ced974517b55 (patch) | |
tree | 6af826662de612f5b91644845845630753dac856 /src/test/java | |
parent | 2b8b0560346fe7e55c293550efb003d9bd25db98 (diff) | |
parent | b4e25a3cb8a9c54cd1d4ec4cbe78dd44f2873eeb (diff) |
Merge pull request #96 from m-chrzan/start-gossip-girl
Create repeating task for initiating gossip
Diffstat (limited to 'src/test/java')
-rw-r--r-- | src/test/java/pl/edu/mimuw/cloudatlas/agent/AgentIntegrationTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/java/pl/edu/mimuw/cloudatlas/agent/AgentIntegrationTest.java b/src/test/java/pl/edu/mimuw/cloudatlas/agent/AgentIntegrationTest.java index f69ed8f..a3e0898 100644 --- a/src/test/java/pl/edu/mimuw/cloudatlas/agent/AgentIntegrationTest.java +++ b/src/test/java/pl/edu/mimuw/cloudatlas/agent/AgentIntegrationTest.java @@ -47,7 +47,7 @@ public class AgentIntegrationTest { public static void bindApi() throws Exception { registryProcess = Runtime.getRuntime().exec("./scripts/registry"); Thread.sleep(10000); - agentProcess = Runtime.getRuntime().exec("./gradlew runAgent -Dhostname=localhost -DfreshnessPeriod=10000000"); + agentProcess = Runtime.getRuntime().exec("./gradlew runAgent -Dhostname=localhost -DfreshnessPeriod=10000000 -DqueryPeriod=100"); Thread.sleep(10000); registry = LocateRegistry.getRegistry("localhost"); |