diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2025-02-14 16:28:57 +0200 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2025-02-17 21:31:24 +0200 |
commit | 4f9ab8e952cb16a311bd533842296a5bd2e9cc1c (patch) | |
tree | 8a8de9afc5850867d4847f81d7d9233b62452189 /mod/module.cli | |
parent | 62a6bd8d6bb576edf76c42db8ffb73fcb0f87fb7 (diff) |
Sleep for some short period of time before retrying after odb::recoverable exception
Also increase the default maximum number of retries for configuration to 20 from 10.
Diffstat (limited to 'mod/module.cli')
-rw-r--r-- | mod/module.cli | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mod/module.cli b/mod/module.cli index f78cd06..cd7af50 100644 --- a/mod/module.cli +++ b/mod/module.cli @@ -179,12 +179,12 @@ namespace brep 5." } - size_t package-db-retry = 10 + size_t package-db-retry = 20 { "<num>", "The maximum number of times to retry package database transactions in the face of recoverable failures (deadlock, loss of connection, etc). - The default is 10." + The default is 20." } }; @@ -379,12 +379,12 @@ namespace brep 5." } - size_t build-db-retry = 10 + size_t build-db-retry = 20 { "<num>", "The maximum number of times to retry build database transactions in the face of recoverable failures (deadlock, loss of connection, etc). - The default is 10." + The default is 20." } }; |