File pacemaker-crmd-scale-all-cib-operation-timeouts.patch of Package pacemaker.14737
commit 88a2f648683674e18ad2a51bd226479f354d1a46
Author: Andrew Beekhof <andrew@beekhof.net>
Date: Tue Oct 24 16:36:42 2017 +1100
Fix: crmd: Scale all cib operation timeouts
diff --git a/crmd/utils.c b/crmd/utils.c
index f272d23bd..f1213af74 100644
--- a/crmd/utils.c
+++ b/crmd/utils.c
@@ -1047,6 +1047,10 @@ cib_op_timeout(unsigned int max)
crm_trace("Calculated timeout: %us (%s)", global_max, env);
}
+ if(fsa_cib_conn) {
+ fsa_cib_conn->call_timeout = QB_MAX(max, global_max);
+ }
+
return QB_MAX(max, global_max);
}