From dd8b2472db542cacfda7d4d403413061ffac043c Mon Sep 17 00:00:00 2001 From: Razvan Becheriu Date: Fri, 26 Mar 2021 08:37:59 +0200 Subject: [PATCH] [#1621] fixed doxygen --- src/lib/database/database_connection.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/database/database_connection.h b/src/lib/database/database_connection.h index 5a5603637d..980ad73485 100644 --- a/src/lib/database/database_connection.h +++ b/src/lib/database/database_connection.h @@ -152,8 +152,8 @@ public: return (action_ == OnFailAction::STOP_RETRY_EXIT); } - /// @brief Return true if the connection recovery mechanism should exit on - /// failure, false otherwise. + /// @brief Return true if the connection recovery mechanism should shut down + /// the server on failure, false otherwise. bool exitOnFailure() { return ((action_ == OnFailAction::STOP_RETRY_EXIT) || (action_ == OnFailAction::SERVE_RETRY_EXIT));