m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorMarcin Chrzanowski <marcin.j.chrzanowski@gmail.com>2020-01-11 18:08:33 +0100
committerMarcin Chrzanowski <marcin.j.chrzanowski@gmail.com>2020-01-11 18:08:33 +0100
commitf4e8b8a24d3bb0a3bfb382c3b487e48817060ca1 (patch)
treeb67ec570f96976817bb478e297da6093e54859e8 /build.gradle
parent0a26fd04d8d87e6e98b014bcb906bd9275dc7f78 (diff)
Make query and gossip periods configurable
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle10
1 files changed, 10 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
index e2174a7..66c50d1 100644
--- a/build.gradle
+++ b/build.gradle
@@ -22,6 +22,14 @@ ext.freshnessPeriod = {
return System.getProperty("freshnessPeriod") ?: 60 * 1000
}
+ext.queryPeriod = {
+ return System.getProperty("queryPeriod") ?: 5 * 1000
+}
+
+ext.gossipPeriod = {
+ return System.getProperty("gossipPeriod") ?: 5 * 1000
+}
+
ext.UDUPHostname = {
return System.getProperty("hostname") ?: "localhost"
}
@@ -79,6 +87,8 @@ task runAgent(type: JavaExec) {
main = 'pl.edu.mimuw.cloudatlas.agent.Agent'
systemProperty 'java.rmi.server.hostname', hostname()
systemProperty 'freshness_period', freshnessPeriod()
+ systemProperty 'query_period', queryPeriod()
+ systemProperty 'gossip_period', gossipPeriod()
systemProperty 'UDUPServer.hostname', UDUPHostname()
systemProperty 'UDUPServer.port', port()
systemProperty 'UDUPServer.timeout', port()