This is an automated email from the ASF dual-hosted git repository.

penghui pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new b7dbf22  [Conf] Fix typo; switch ledged to ledger (#10830)
b7dbf22 is described below

commit b7dbf228522f3ea34cabba40ad29cf5da6f4b034
Author: Michael Marshall <[email protected]>
AuthorDate: Fri Jun 4 22:15:13 2021 -0500

    [Conf] Fix typo; switch ledged to ledger (#10830)
---
 conf/broker.conf                                                        | 2 +-
 conf/standalone.conf                                                    | 2 +-
 deployment/terraform-ansible/templates/broker.conf                      | 2 +-
 .../src/main/java/org/apache/pulsar/broker/ServiceConfiguration.java    | 2 +-
 pulsar-client-cpp/test-conf/standalone-ssl.conf                         | 2 +-
 pulsar-client-cpp/test-conf/standalone.conf                             | 2 +-
 pulsar-client-cpp/tests/authentication.conf                             | 2 +-
 pulsar-client-cpp/tests/standalone.conf                                 | 2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/conf/broker.conf b/conf/broker.conf
index cf91053..f0f0da3 100644
--- a/conf/broker.conf
+++ b/conf/broker.conf
@@ -894,7 +894,7 @@ managedLedgerDefaultMarkDeleteRateLimit=1.0
 # Max number of entries to append to a ledger before triggering a rollover
 # A ledger rollover is triggered on these conditions
 #  * Either the max rollover time has been reached
-#  * or max entries have been written to the ledged and at least min-time
+#  * or max entries have been written to the ledger and at least min-time
 #    has passed
 managedLedgerMaxEntriesPerLedger=50000
 
diff --git a/conf/standalone.conf b/conf/standalone.conf
index aa52f8d..ebb110a 100644
--- a/conf/standalone.conf
+++ b/conf/standalone.conf
@@ -629,7 +629,7 @@ managedLedgerDefaultMarkDeleteRateLimit=0.1
 # Max number of entries to append to a ledger before triggering a rollover
 # A ledger rollover is triggered on these conditions
 #  * Either the max rollover time has been reached
-#  * or max entries have been written to the ledged and at least min-time
+#  * or max entries have been written to the ledger and at least min-time
 #    has passed
 managedLedgerMaxEntriesPerLedger=50000
 
diff --git a/deployment/terraform-ansible/templates/broker.conf 
b/deployment/terraform-ansible/templates/broker.conf
index 7350e44..89b8dde 100644
--- a/deployment/terraform-ansible/templates/broker.conf
+++ b/deployment/terraform-ansible/templates/broker.conf
@@ -787,7 +787,7 @@ managedLedgerDefaultMarkDeleteRateLimit=1.0
 # Max number of entries to append to a ledger before triggering a rollover
 # A ledger rollover is triggered on these conditions
 #  * Either the max rollover time has been reached
-#  * or max entries have been written to the ledged and at least min-time
+#  * or max entries have been written to the ledger and at least min-time
 #    has passed
 managedLedgerMaxEntriesPerLedger=50000
 
diff --git 
a/pulsar-broker-common/src/main/java/org/apache/pulsar/broker/ServiceConfiguration.java
 
b/pulsar-broker-common/src/main/java/org/apache/pulsar/broker/ServiceConfiguration.java
index 2d87e57..21cdcef 100644
--- 
a/pulsar-broker-common/src/main/java/org/apache/pulsar/broker/ServiceConfiguration.java
+++ 
b/pulsar-broker-common/src/main/java/org/apache/pulsar/broker/ServiceConfiguration.java
@@ -1473,7 +1473,7 @@ public class ServiceConfiguration implements 
PulsarConfiguration {
         doc = "Max number of entries to append to a ledger before triggering a 
rollover.\n\n"
             + "A ledger rollover is triggered on these conditions Either the 
max"
             + " rollover time has been reached or max entries have been 
written to the"
-            + " ledged and at least min-time has passed")
+            + " ledger and at least min-time has passed")
     private int managedLedgerMaxEntriesPerLedger = 50000;
     @FieldContext(
         category = CATEGORY_STORAGE_ML,
diff --git a/pulsar-client-cpp/test-conf/standalone-ssl.conf 
b/pulsar-client-cpp/test-conf/standalone-ssl.conf
index 1b63b62..8149c0b 100644
--- a/pulsar-client-cpp/test-conf/standalone-ssl.conf
+++ b/pulsar-client-cpp/test-conf/standalone-ssl.conf
@@ -187,7 +187,7 @@ managedLedgerDefaultMarkDeleteRateLimit=0.1
 # Max number of entries to append to a ledger before triggering a rollover
 # A ledger rollover is triggered on these conditions
 #  * Either the max rollover time has been reached
-#  * or max entries have been written to the ledged and at least min-time
+#  * or max entries have been written to the ledger and at least min-time
 #    has passed
 managedLedgerMaxEntriesPerLedger=50000
 
diff --git a/pulsar-client-cpp/test-conf/standalone.conf 
b/pulsar-client-cpp/test-conf/standalone.conf
index 3b46ccd..347c69b 100644
--- a/pulsar-client-cpp/test-conf/standalone.conf
+++ b/pulsar-client-cpp/test-conf/standalone.conf
@@ -175,7 +175,7 @@ managedLedgerDefaultMarkDeleteRateLimit=0.1
 # Max number of entries to append to a ledger before triggering a rollover
 # A ledger rollover is triggered on these conditions
 #  * Either the max rollover time has been reached
-#  * or max entries have been written to the ledged and at least min-time 
+#  * or max entries have been written to the ledger and at least min-time
 #    has passed
 managedLedgerMaxEntriesPerLedger=50000
 
diff --git a/pulsar-client-cpp/tests/authentication.conf 
b/pulsar-client-cpp/tests/authentication.conf
index f243ab3..47ea866 100644
--- a/pulsar-client-cpp/tests/authentication.conf
+++ b/pulsar-client-cpp/tests/authentication.conf
@@ -181,7 +181,7 @@ managedLedgerDefaultMarkDeleteRateLimit=0.1
 # Max number of entries to append to a ledger before triggering a rollover
 # A ledger rollover is triggered on these conditions
 #  * Either the max rollover time has been reached
-#  * or max entries have been written to the ledged and at least min-time
+#  * or max entries have been written to the ledger and at least min-time
 #    has passed
 managedLedgerMaxEntriesPerLedger=50000
 
diff --git a/pulsar-client-cpp/tests/standalone.conf 
b/pulsar-client-cpp/tests/standalone.conf
index a9ca0a5..22d1333 100644
--- a/pulsar-client-cpp/tests/standalone.conf
+++ b/pulsar-client-cpp/tests/standalone.conf
@@ -173,7 +173,7 @@ managedLedgerDefaultMarkDeleteRateLimit=0.1
 # Max number of entries to append to a ledger before triggering a rollover
 # A ledger rollover is triggered on these conditions
 #  * Either the max rollover time has been reached
-#  * or max entries have been written to the ledged and at least min-time
+#  * or max entries have been written to the ledger and at least min-time
 #    has passed
 managedLedgerMaxEntriesPerLedger=50000
 

Reply via email to