This is an automated email from the ASF dual-hosted git repository. penghui pushed a commit to branch branch-2.8 in repository https://gitbox.apache.org/repos/asf/pulsar.git
commit ab00b993ee1282134c76988de18eb1c4dff58a31 Author: Ildefonso Junquero <[email protected]> AuthorDate: Sat Jun 26 06:53:37 2021 +0200 Added missing configuration entries (#11095) The two configuration entries forceDeleteTenantAllowed and forceDeleteNamespaceAllowed exist in broker.conf, but they were missing in standalone.conf, so they were not able to be configured by environment variables. (cherry picked from commit 7824325efc822307f60b38e9d24bdb189e415a06) --- conf/standalone.conf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/conf/standalone.conf b/conf/standalone.conf index 7c818d3..363ce3b 100644 --- a/conf/standalone.conf +++ b/conf/standalone.conf @@ -105,6 +105,12 @@ brokerDeleteInactiveTopicsEnabled=true # How often to check for inactive topics brokerDeleteInactiveTopicsFrequencySeconds=60 +# Allow you to delete a tenant forcefully. +forceDeleteTenantAllowed=false + +# Allow you to delete a namespace forcefully. +forceDeleteNamespaceAllowed=false + # Max pending publish requests per connection to avoid keeping large number of pending # requests in memory. Default: 1000 maxPendingPublishRequestsPerConnection=1000
