This is an automated email from the ASF dual-hosted git repository.
epugh pushed a commit to branch branch_9x
in repository https://gitbox.apache.org/repos/asf/solr.git
The following commit(s) were added to refs/heads/branch_9x by this push:
new fb81b6427a2 Fix broken documentation for gcs-backups (#1327)
fb81b6427a2 is described below
commit fb81b6427a20425e5e276615d9d6d160bcec7f4b
Author: Sven Schliesing <[email protected]>
AuthorDate: Fri Feb 3 15:30:49 2023 +0100
Fix broken documentation for gcs-backups (#1327)
Configuration keys were mixed up making it hard to find them in the
documentation and even harder to debug timeouts on backup.
---
.../solr-ref-guide/modules/deployment-guide/pages/backup-restore.adoc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/solr/solr-ref-guide/modules/deployment-guide/pages/backup-restore.adoc
b/solr/solr-ref-guide/modules/deployment-guide/pages/backup-restore.adoc
index 012e77c50f4..9ab7d8ed985 100644
--- a/solr/solr-ref-guide/modules/deployment-guide/pages/backup-restore.adoc
+++ b/solr/solr-ref-guide/modules/deployment-guide/pages/backup-restore.adoc
@@ -654,9 +654,9 @@ An example configuration using the overall and GCS-client
properties can be seen
<str name="location">/default/gcs/backup/location</str>
<int name="gcsClientMaxRetries">5</int>
- <int name="gcsClientHttpInitialHttpDelayMillis">1500</int>
+ <int name="gcsClientHttpInitialRetryDelayMillis">1500</int>
<double name="gcsClientHttpRetryDelayMultiplier">1.5</double>
- <int name="gcsClientMaxHttpRetryDelayMillis">10000</int>
+ <int name="gcsClientHttpMaxRetryDelayMillis">10000</int>
</repository>
</backup>
----