Skip to content

Commit

Permalink
[Doc] Fix Authentication typos. (apache#10770)
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertIndie authored Jun 2, 2021
1 parent b458b4a commit bfd73af
Show file tree
Hide file tree
Showing 40 changed files with 40 additions and 40 deletions.
2 changes: 1 addition & 1 deletion conf/broker.conf
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ brokerClientTlsProtocols=
# Enable authentication
authenticationEnabled=false

# Autentication provider name list, which is comma separated list of class names
# Authentication provider name list, which is comma separated list of class names
authenticationProviders=

# Interval of time for checking for expired authentication credentials
Expand Down
2 changes: 1 addition & 1 deletion conf/standalone.conf
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ authenticateOriginalAuthData=false
# Enable authentication
authenticationEnabled=false

# Autentication provider name list, which is comma separated list of class names
# Authentication provider name list, which is comma separated list of class names
authenticationProviders=

# Enforce authorization
Expand Down
2 changes: 1 addition & 1 deletion conf/websocket.conf
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ webSocketMaxTextFrameSize=1048576
# Enable authentication
authenticationEnabled=false

# Autentication provider name list, which is comma separated list of class names
# Authentication provider name list, which is comma separated list of class names
authenticationProviders=

# Enforce authorization
Expand Down
2 changes: 1 addition & 1 deletion deployment/terraform-ansible/templates/broker.conf
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ brokerClientTlsProtocols=
# Enable authentication
authenticationEnabled=false

# Autentication provider name list, which is comma separated list of class names
# Authentication provider name list, which is comma separated list of class names
authenticationProviders=

# Interval of time for checking for expired authentication credentials
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1053,7 +1053,7 @@ public class ServiceConfiguration implements PulsarConfiguration {
private boolean authenticationEnabled = false;
@FieldContext(
category = CATEGORY_AUTHENTICATION,
doc = "Autentication provider name list, which is a list of class names"
doc = "Authentication provider name list, which is a list of class names"
)
private Set<String> authenticationProviders = Sets.newTreeSet();

Expand Down
2 changes: 1 addition & 1 deletion pulsar-client-cpp/test-conf/standalone-ssl.conf
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ anonymousUserRole=anonymous
# Enable authentication
authenticationEnabled=true

# Autentication provider name list, which is comma separated list of class names
# Authentication provider name list, which is comma separated list of class names
authenticationProviders=org.apache.pulsar.broker.authentication.AuthenticationProviderTls,org.apache.pulsar.broker.authentication.AuthenticationProviderToken

# Enforce authorization
Expand Down
2 changes: 1 addition & 1 deletion pulsar-client-cpp/test-conf/standalone.conf
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ subscriptionRedeliveryTrackerEnabled=true
# Enable authentication
authenticationEnabled=false

# Autentication provider name list, which is comma separated list of class names
# Authentication provider name list, which is comma separated list of class names
authenticationProviders=false

# Enforce authorization
Expand Down
2 changes: 1 addition & 1 deletion pulsar-client-cpp/tests/authentication.conf
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ tlsAllowInsecureConnection=true
# Enable authentication
authenticationEnabled=true

# Autentication provider name list, which is comma separated list of class names
# Authentication provider name list, which is comma separated list of class names
authenticationProviders=org.apache.pulsar.broker.authentication.AuthenticationProviderTls

# Enforce authorization
Expand Down
2 changes: 1 addition & 1 deletion pulsar-client-cpp/tests/standalone.conf
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ maxUnackedMessagesPerConsumer=50000
# Enable authentication
authenticationEnabled=false

# Autentication provider name list, which is comma separated list of class names
# Authentication provider name list, which is comma separated list of class names
authenticationProviders=false

# Enforce authorization
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class WebSocketProxyConfiguration implements PulsarConfiguration {
// --- Authentication ---
// Enable authentication
private boolean authenticationEnabled;
// Autentication provider name list, which is a list of class names
// Authentication provider name list, which is a list of class names
private Set<String> authenticationProviders = Sets.newTreeSet();
// Enforce authorization
private boolean authorizationEnabled;
Expand Down
2 changes: 1 addition & 1 deletion pulsar-websocket/src/test/resources/websocket.conf
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ webSocketMaxTextFrameSize=1048576
# Enable authentication
authenticationEnabled=true

# Autentication provider name list, which is comma separated list of class names
# Authentication provider name list, which is comma separated list of class names
authenticationProviders=org.apache.pulsar.broker.authentication.AuthenticationProviderToken

# Enforce authorization
Expand Down
2 changes: 1 addition & 1 deletion site2/docs/reference-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ brokerServiceCompactionThresholdInBytes|If the estimated backlog size is greater
|maxConcurrentLookupRequest| Max number of concurrent lookup request broker allows to throttle heavy incoming lookup traffic |50000|
|maxConcurrentTopicLoadRequest| Max number of concurrent topic loading request broker allows to control number of zk-operations |5000|
|authenticationEnabled| Enable authentication |false|
|authenticationProviders| Autentication provider name list, which is comma separated list of class names ||
|authenticationProviders| Authentication provider name list, which is comma separated list of class names ||
| authenticationRefreshCheckSeconds | Interval of time for checking for expired authentication credentials | 60 |
|authorizationEnabled| Enforce authorization |false|
|superUserRoles| Role names that are treated as “super-user”, meaning they will be able to do all admin operations and publish/consume from all topics ||
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ Pulsar brokers are responsible for handling incoming messages from producers, di
|maxConcurrentLookupRequest| Max number of concurrent lookup request broker allows to throttle heavy incoming lookup traffic |10000|
|maxConcurrentTopicLoadRequest| Max number of concurrent topic loading request broker allows to control number of zk-operations |5000|
|authenticationEnabled| Enable authentication |false|
|authenticationProviders| Autentication provider name list, which is comma separated list of class names ||
|authenticationProviders| Authentication provider name list, which is comma separated list of class names ||
|authorizationEnabled| Enforce authorization |false|
|superUserRoles| Role names that are treated as “super-user”, meaning they will be able to do all admin operations and publish/consume from all topics ||
|brokerClientAuthenticationPlugin| Authentication settings of the broker itself. Used when the broker connects to other brokers, either in same or other clusters ||
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ at the same time.
In `conf/broker.conf` it's possible to specify a list of valid providers:

```properties
# Autentication provider name list, which is comma separated list of class names
# Authentication provider name list, which is comma separated list of class names
authenticationProviders=
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ Pulsar brokers are responsible for handling incoming messages from producers, di
|maxConcurrentLookupRequest| Max number of concurrent lookup request broker allows to throttle heavy incoming lookup traffic |50000|
|maxConcurrentTopicLoadRequest| Max number of concurrent topic loading request broker allows to control number of zk-operations |5000|
|authenticationEnabled| Enable authentication |false|
|authenticationProviders| Autentication provider name list, which is comma separated list of class names ||
|authenticationProviders| Authentication provider name list, which is comma separated list of class names ||
|authorizationEnabled| Enforce authorization |false|
|superUserRoles| Role names that are treated as “super-user”, meaning they will be able to do all admin operations and publish/consume from all topics ||
|brokerClientAuthenticationPlugin| Authentication settings of the broker itself. Used when the broker connects to other brokers, either in same or other clusters ||
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ Pulsar brokers are responsible for handling incoming messages from producers, di
|maxConcurrentLookupRequest| Max number of concurrent lookup request broker allows to throttle heavy incoming lookup traffic |50000|
|maxConcurrentTopicLoadRequest| Max number of concurrent topic loading request broker allows to control number of zk-operations |5000|
|authenticationEnabled| Enable authentication |false|
|authenticationProviders| Autentication provider name list, which is comma separated list of class names ||
|authenticationProviders| Authentication provider name list, which is comma separated list of class names ||
|authorizationEnabled| Enforce authorization |false|
|superUserRoles| Role names that are treated as “super-user”, meaning they will be able to do all admin operations and publish/consume from all topics ||
|brokerClientAuthenticationPlugin| Authentication settings of the broker itself. Used when the broker connects to other brokers, either in same or other clusters ||
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ at the same time.
In `conf/broker.conf` it's possible to specify a list of valid providers:

```properties
# Autentication provider name list, which is comma separated list of class names
# Authentication provider name list, which is comma separated list of class names
authenticationProviders=
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ Pulsar brokers are responsible for handling incoming messages from producers, di
|maxConcurrentLookupRequest| Max number of concurrent lookup request broker allows to throttle heavy incoming lookup traffic |50000|
|maxConcurrentTopicLoadRequest| Max number of concurrent topic loading request broker allows to control number of zk-operations |5000|
|authenticationEnabled| Enable authentication |false|
|authenticationProviders| Autentication provider name list, which is comma separated list of class names ||
|authenticationProviders| Authentication provider name list, which is comma separated list of class names ||
|authorizationEnabled| Enforce authorization |false|
|superUserRoles| Role names that are treated as “super-user”, meaning they will be able to do all admin operations and publish/consume from all topics ||
|brokerClientAuthenticationPlugin| Authentication settings of the broker itself. Used when the broker connects to other brokers, either in same or other clusters ||
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ Pulsar brokers are responsible for handling incoming messages from producers, di
|maxConcurrentLookupRequest| Max number of concurrent lookup request broker allows to throttle heavy incoming lookup traffic |50000|
|maxConcurrentTopicLoadRequest| Max number of concurrent topic loading request broker allows to control number of zk-operations |5000|
|authenticationEnabled| Enable authentication |false|
|authenticationProviders| Autentication provider name list, which is comma separated list of class names ||
|authenticationProviders| Authentication provider name list, which is comma separated list of class names ||
|authorizationEnabled| Enforce authorization |false|
|superUserRoles| Role names that are treated as “super-user”, meaning they will be able to do all admin operations and publish/consume from all topics ||
|brokerClientAuthenticationPlugin| Authentication settings of the broker itself. Used when the broker connects to other brokers, either in same or other clusters ||
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ Pulsar brokers are responsible for handling incoming messages from producers, di
|maxConcurrentLookupRequest| Max number of concurrent lookup request broker allows to throttle heavy incoming lookup traffic |50000|
|maxConcurrentTopicLoadRequest| Max number of concurrent topic loading request broker allows to control number of zk-operations |5000|
|authenticationEnabled| Enable authentication |false|
|authenticationProviders| Autentication provider name list, which is comma separated list of class names ||
|authenticationProviders| Authentication provider name list, which is comma separated list of class names ||
|authorizationEnabled| Enforce authorization |false|
|superUserRoles| Role names that are treated as “super-user”, meaning they will be able to do all admin operations and publish/consume from all topics ||
|brokerClientAuthenticationPlugin| Authentication settings of the broker itself. Used when the broker connects to other brokers, either in same or other clusters ||
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ Pulsar brokers are responsible for handling incoming messages from producers, di
|maxConcurrentLookupRequest| Max number of concurrent lookup request broker allows to throttle heavy incoming lookup traffic |50000|
|maxConcurrentTopicLoadRequest| Max number of concurrent topic loading request broker allows to control number of zk-operations |5000|
|authenticationEnabled| Enable authentication |false|
|authenticationProviders| Autentication provider name list, which is comma separated list of class names ||
|authenticationProviders| Authentication provider name list, which is comma separated list of class names ||
|authorizationEnabled| Enforce authorization |false|
|superUserRoles| Role names that are treated as “super-user”, meaning they will be able to do all admin operations and publish/consume from all topics ||
|brokerClientAuthenticationPlugin| Authentication settings of the broker itself. Used when the broker connects to other brokers, either in same or other clusters ||
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ Pulsar brokers are responsible for handling incoming messages from producers, di
|maxConcurrentLookupRequest| Max number of concurrent lookup request broker allows to throttle heavy incoming lookup traffic |50000|
|maxConcurrentTopicLoadRequest| Max number of concurrent topic loading request broker allows to control number of zk-operations |5000|
|authenticationEnabled| Enable authentication |false|
|authenticationProviders| Autentication provider name list, which is comma separated list of class names ||
|authenticationProviders| Authentication provider name list, which is comma separated list of class names ||
|authorizationEnabled| Enforce authorization |false|
|superUserRoles| Role names that are treated as “super-user”, meaning they will be able to do all admin operations and publish/consume from all topics ||
|brokerClientAuthenticationPlugin| Authentication settings of the broker itself. Used when the broker connects to other brokers, either in same or other clusters ||
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ Pulsar brokers are responsible for handling incoming messages from producers, di
|maxConcurrentLookupRequest| Max number of concurrent lookup request broker allows to throttle heavy incoming lookup traffic |50000|
|maxConcurrentTopicLoadRequest| Max number of concurrent topic loading request broker allows to control number of zk-operations |5000|
|authenticationEnabled| Enable authentication |false|
|authenticationProviders| Autentication provider name list, which is comma separated list of class names ||
|authenticationProviders| Authentication provider name list, which is comma separated list of class names ||
|authorizationEnabled| Enforce authorization |false|
|superUserRoles| Role names that are treated as “super-user”, meaning they will be able to do all admin operations and publish/consume from all topics ||
|brokerClientAuthenticationPlugin| Authentication settings of the broker itself. Used when the broker connects to other brokers, either in same or other clusters ||
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ Pulsar brokers are responsible for handling incoming messages from producers, di
|maxConcurrentLookupRequest| Max number of concurrent lookup request broker allows to throttle heavy incoming lookup traffic |50000|
|maxConcurrentTopicLoadRequest| Max number of concurrent topic loading request broker allows to control number of zk-operations |5000|
|authenticationEnabled| Enable authentication |false|
|authenticationProviders| Autentication provider name list, which is comma separated list of class names ||
|authenticationProviders| Authentication provider name list, which is comma separated list of class names ||
|authorizationEnabled| Enforce authorization |false|
|superUserRoles| Role names that are treated as “super-user”, meaning they will be able to do all admin operations and publish/consume from all topics ||
|brokerClientAuthenticationPlugin| Authentication settings of the broker itself. Used when the broker connects to other brokers, either in same or other clusters ||
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ Pulsar brokers are responsible for handling incoming messages from producers, di
|maxConcurrentLookupRequest| Max number of concurrent lookup request broker allows to throttle heavy incoming lookup traffic |50000|
|maxConcurrentTopicLoadRequest| Max number of concurrent topic loading request broker allows to control number of zk-operations |5000|
|authenticationEnabled| Enable authentication |false|
|authenticationProviders| Autentication provider name list, which is comma separated list of class names ||
|authenticationProviders| Authentication provider name list, which is comma separated list of class names ||
|authorizationEnabled| Enforce authorization |false|
|superUserRoles| Role names that are treated as “super-user”, meaning they will be able to do all admin operations and publish/consume from all topics ||
|brokerClientAuthenticationPlugin| Authentication settings of the broker itself. Used when the broker connects to other brokers, either in same or other clusters ||
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ On broker side, you need the corresponding plugin to validate the credentials th
In `conf/broker.conf` you can choose to specify a list of valid providers:

```properties
# Autentication provider name list, which is comma separated list of class names
# Authentication provider name list, which is comma separated list of class names
authenticationProviders=
```
To implement `org.apache.pulsar.broker.authentication.AuthenticationProvider` on one single interface:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ Pulsar brokers are responsible for handling incoming messages from producers, di
|maxConcurrentLookupRequest| Max number of concurrent lookup request broker allows to throttle heavy incoming lookup traffic |50000|
|maxConcurrentTopicLoadRequest| Max number of concurrent topic loading request broker allows to control number of zk-operations |5000|
|authenticationEnabled| Enable authentication |false|
|authenticationProviders| Autentication provider name list, which is comma separated list of class names ||
|authenticationProviders| Authentication provider name list, which is comma separated list of class names ||
|authorizationEnabled| Enforce authorization |false|
|superUserRoles| Role names that are treated as “super-user”, meaning they will be able to do all admin operations and publish/consume from all topics ||
|brokerClientAuthenticationPlugin| Authentication settings of the broker itself. Used when the broker connects to other brokers, either in same or other clusters ||
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ Pulsar brokers are responsible for handling incoming messages from producers, di
|maxConcurrentLookupRequest| Max number of concurrent lookup request broker allows to throttle heavy incoming lookup traffic |50000|
|maxConcurrentTopicLoadRequest| Max number of concurrent topic loading request broker allows to control number of zk-operations |5000|
|authenticationEnabled| Enable authentication |false|
|authenticationProviders| Autentication provider name list, which is comma separated list of class names ||
|authenticationProviders| Authentication provider name list, which is comma separated list of class names ||
|authorizationEnabled| Enforce authorization |false|
|superUserRoles| Role names that are treated as “super-user”, meaning they will be able to do all admin operations and publish/consume from all topics ||
|brokerClientAuthenticationPlugin| Authentication settings of the broker itself. Used when the broker connects to other brokers, either in same or other clusters ||
Expand Down
Loading

0 comments on commit bfd73af

Please sign in to comment.