diff --git a/README.md b/README.md index a9c4a2f5f4bcb..451f1eb4dfa1a 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,7 @@ Learn more about Pulsar at https://pulsar.apache.org ## Main features +- Dummy PR - Horizontally scalable (Millions of independent topics and millions of messages published per second) - Strong ordering and consistency guarantees diff --git a/pulsar-broker/src/main/java/org/apache/pulsar/PulsarBrokerStarter.java b/pulsar-broker/src/main/java/org/apache/pulsar/PulsarBrokerStarter.java index 1b24c806e62cb..5a5b1cccd04de 100644 --- a/pulsar-broker/src/main/java/org/apache/pulsar/PulsarBrokerStarter.java +++ b/pulsar-broker/src/main/java/org/apache/pulsar/PulsarBrokerStarter.java @@ -69,7 +69,7 @@ public class PulsarBrokerStarter { private static ServiceConfiguration loadConfig(String configFile) throws Exception { try (InputStream inputStream = new FileInputStream(configFile)) { ServiceConfiguration config = create(inputStream, ServiceConfiguration.class); - // it validates provided configuration is completed + // it validates provided configuration is completed ok isComplete(config); return config; }