summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2009-12-16 15:48:59 -0500
committerStephen Gallagher <sgallagh@redhat.com>2009-12-17 16:37:47 -0500
commitbfd179a1d0f21eaae6b8788f01401d95e11eab3a (patch)
tree9413d314e6f1546360a0b9f2bf8d3dfa220c2c62 /server
parentf241390220928fbf2e7758f49ebbe29e9ef02ec1 (diff)
downloadsssd-bfd179a1d0f21eaae6b8788f01401d95e11eab3a.tar.gz
sssd-bfd179a1d0f21eaae6b8788f01401d95e11eab3a.tar.xz
sssd-bfd179a1d0f21eaae6b8788f01401d95e11eab3a.zip
Fix tight-loop in monitor part 2
The first fix only fixed tight loops caused by setting 'timeout=0' in services. This patch also fixes it for domains.
Diffstat (limited to 'server')
-rw-r--r--server/monitor/monitor.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/server/monitor/monitor.c b/server/monitor/monitor.c
index 30df2cb9c..b3174bdab 100644
--- a/server/monitor/monitor.c
+++ b/server/monitor/monitor.c
@@ -1149,6 +1149,11 @@ static int get_provider_config(struct mt_ctx *ctx, const char *name,
return ret;
}
+ /* 'timeout = 0' should be translated to the default */
+ if (svc->ping_time == 0) {
+ svc->ping_time = MONITOR_DEF_PING_TIME;
+ }
+
talloc_free(path);
/* if no provider is present do not run the domain */