From 1e2a4223325507e1162c10fe19b3bdb3457281e5 Mon Sep 17 00:00:00 2001 From: Rama Date: Thu, 12 Jul 2018 09:44:27 +0530 Subject: [PATCH 1/2] minor doc changes Signed-off-by: Rama --- source/common/common/backoff_strategy.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/common/common/backoff_strategy.h b/source/common/common/backoff_strategy.h index ef55cf9060f6c..787320ecb5a98 100644 --- a/source/common/common/backoff_strategy.h +++ b/source/common/common/backoff_strategy.h @@ -17,9 +17,9 @@ class JitteredBackOffStrategy : public BackOffStrategy { public: /** - * Use this constructor if max_interval need to be enforced. + * Constructs fully jittered backoff strategy. * @param base_interval the base_interval to be used for next backoff computation. - * @param max_interval if the computed next backoff is more than this, this will be returned. + * @param max_interval the cap on the next backoff value. * @param random the random generator */ JitteredBackOffStrategy(uint64_t base_interval, uint64_t max_interval, From 118d1130ef2ce7ecc2d6d681d3adc3c083b32e2f Mon Sep 17 00:00:00 2001 From: Rama Date: Thu, 12 Jul 2018 11:53:20 +0530 Subject: [PATCH 2/2] trigger build again Signed-off-by: Rama