You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by pe...@apache.org on 2020/03/19 03:08:39 UTC

[pulsar] branch master updated: Fix maxPendingPublishedRequestsPerConnection value in conf files (#6546)

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 41c583c  Fix maxPendingPublishedRequestsPerConnection value in conf files (#6546)
41c583c is described below

commit 41c583c7ff9f9eaa450930e114f84decc1eb84c2
Author: Masahiro Sakamoto <ma...@yahoo-corp.jp>
AuthorDate: Thu Mar 19 12:08:28 2020 +0900

    Fix maxPendingPublishedRequestsPerConnection value in conf files (#6546)
    
    The value of maxPendingPublishedRequestsPerConnection in conf files has a semicolon at the end. This causes the standalone server to fail to start.
---
 conf/broker.conf     | 2 +-
 conf/standalone.conf | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/conf/broker.conf b/conf/broker.conf
index 08f370c..1a96ff1 100644
--- a/conf/broker.conf
+++ b/conf/broker.conf
@@ -116,7 +116,7 @@ brokerDeleteInactiveTopicsMaxInactiveDurationSeconds=
 
 # Max pending publish requests per connection to avoid keeping large number of pending 
 # requests in memory. Default: 1000
-maxPendingPublishdRequestsPerConnection=1000;
+maxPendingPublishdRequestsPerConnection=1000
 
 # How frequently to proactively check and purge expired messages
 messageExpiryCheckIntervalInMinutes=5
diff --git a/conf/standalone.conf b/conf/standalone.conf
index 81bbd43..cf32ba3 100644
--- a/conf/standalone.conf
+++ b/conf/standalone.conf
@@ -77,7 +77,7 @@ brokerDeleteInactiveTopicsFrequencySeconds=60
 
 # Max pending publish requests per connection to avoid keeping large number of pending 
 # requests in memory. Default: 1000
-maxPendingPublishdRequestsPerConnection=1000;
+maxPendingPublishdRequestsPerConnection=1000
 
 # How frequently to proactively check and purge expired messages
 messageExpiryCheckIntervalInMinutes=5