From 40b693453f753850e92ef9a6c7bea40af6466e03 Mon Sep 17 00:00:00 2001 From: Stephen Gran Date: Sun, 13 May 2012 11:17:09 +0100 Subject: [PATCH] except it is an integer Signed-off-by: Stephen Gran --- modules/exim/templates/eximconf.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/exim/templates/eximconf.erb b/modules/exim/templates/eximconf.erb index 628e0dca0..8541a7f7b 100644 --- a/modules/exim/templates/eximconf.erb +++ b/modules/exim/templates/eximconf.erb @@ -194,8 +194,8 @@ queue_only_load = 35 smtp_load_reserve = 20 <%- else -%> queue_run_max = 5 -deliver_queue_load_max = <%= scope.lookupvar('::processorcount') * 5 %> -queue_only_load = <%= scope.lookupvar('::processorcount') * 4 %> +deliver_queue_load_max = <%= scope.lookupvar('::processorcount').to_i * 5 %> +queue_only_load = <%= scope.lookupvar('::processorcount').to_i * 4 %> <%- end -%> queue_list_requires_admin = false -- 2.20.1