Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
gfinocchiaro committed Aug 21, 2024
1 parent b287e71 commit 663dd21
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion examples/airport-demo/connector/adapters.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@

<!-- ##### RECORD ROUTING SETTINGS ##### -->

<!-- The "Flights" item template, which defines the format of the items the Lighstreamer Clients
<!-- The "Flights" item template, which defines the format of the items the Lightstreamer Clients
must subscribe to to receive real-time updates. -->
<param name="item-template.flights">flights-#{key=KEY}</param>

Expand Down
4 changes: 2 additions & 2 deletions examples/docker-kafka-connect/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ The image is based on the official [Official Confluent Docker Base Image for Kaf
3. Check that the image has been created:

```sh
$ docker image ls kafka-connect-lighstreamer-<version>
$ docker image ls kafka-connect-lightstreamer-<version>

REPOSITORY TAG IMAGE ID CREATED SIZE
kafka-connect-lighstreamer-1.0.0 latest 417d099deaa8 18 seconds ago 1.75GB
kafka-connect-lightstreamer-1.0.0 latest 417d099deaa8 18 seconds ago 1.75GB
```

## Running in Docker Compose
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ value.converter.schema.registry.url=http://schema-registry:8081
# The storage file name for connector offsets.
offset.storage.file.filename=/tmp/connect.offsets

# The Kafka Connect Lighstreamer Sink Connector docker image installs
# The Kafka Connect Lightstreamer Sink Connector docker image installs
# the connector plugins into this path
plugin.path=/usr/local/share/kafka/plugins/
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,19 @@ topics=stocks
lightstreamer.server.proxy_adapter.address=lightstreamer:6661

# The (optional) amount of time in milliseconds the connctor will wait for the socket connection
# to be established to the Lighstreamer server's Proxy Adapter before terminating the task.
# to be established to the Lightstreamer server's Proxy Adapter before terminating the task.
# Specify `0` for infinite timeout.
#
# See https://github.com/Lightstreamer/Lightstreamer-kafka-connector/?tab=readme-ov-file#lightstreamerserverproxy_adaptersocketconnectionsetuptimeoutms
lightstreamer.server.proxy_adapter.socket.connection.setup.timeout.ms=15000

# The (optional) max number of retries to establish a connection to the Lighstreamer server's Proxy Adapter.
# The (optional) max number of retries to establish a connection to the Lightstreamer server's Proxy Adapter.
#
# See https://github.com/Lightstreamer/Lightstreamer-kafka-connector/?tab=readme-ov-file#ightstreamerserverproxy_adaptersocketconnectionsetupmaxretries
lightstreamer.server.proxy_adapter.socket.connection.setup.max.retries=5

# The (optional) amount of time in milliseconds to wait before retrying to establish a new connection to the
# Lighstreamer server's Proxy Adapter in case of failure.
# Lightstreamer server's Proxy Adapter in case of failure.
# Only applicable if `lightstreamer.server.proxy_adapter.socket.connection.setup.max.retries` > 0.
#
# See https://github.com/Lightstreamer/Lightstreamer-kafka-connector/?tab=readme-ov-file#lightstreamerserverproxy_adaptersocketconnectionsetupretrydelayms
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,19 @@ topics=stocks
lightstreamer.server.proxy_adapter.address=localhost:6661

# The (optional) amount of time in milliseconds the connctor will wait for the socket connection
# to be established to the Lighstreamer server's Proxy Adapter before terminating the task.
# to be established to the Lightstreamer server's Proxy Adapter before terminating the task.
# Specify `0` for infinite timeout.
#
# See https://github.com/Lightstreamer/Lightstreamer-kafka-connector/?tab=readme-ov-file#lightstreamerserverproxy_adaptersocketconnectionsetuptimeoutms
lightstreamer.server.proxy_adapter.socket.connection.setup.timeout.ms=15000

# The (optional) max number of retries to establish a connection to the Lighstreamer server's Proxy Adapter.
# The (optional) max number of retries to establish a connection to the Lightstreamer server's Proxy Adapter.
#
# See https://github.com/Lightstreamer/Lightstreamer-kafka-connector/?tab=readme-ov-file#ightstreamerserverproxy_adaptersocketconnectionsetupmaxretries
lightstreamer.server.proxy_adapter.socket.connection.setup.max.retries=5

# The (optional) amount of time in milliseconds to wait before retrying to establish a new connection to the
# Lighstreamer server's Proxy Adapter in case of failure.
# Lightstreamer server's Proxy Adapter in case of failure.
# Only applicable if `lightstreamer.server.proxy_adapter.socket.connection.setup.max.retries` > 0.
#
# See https://github.com/Lightstreamer/Lightstreamer-kafka-connector/?tab=readme-ov-file#lightstreamerserverproxy_adaptersocketconnectionsetupretrydelayms
Expand Down
2 changes: 1 addition & 1 deletion kafka-connector-project/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
version=1.0.0
brandedProjectName=Lighstreamer Kafka Connector
brandedProjectName=Lightstreamer Kafka Connector
release_date=2024-08-19
distDir=../dist
connect_owner=lightstreamer
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Lighstreamer Kafka Connector
# Lightstreamer Kafka Connector

_Lightstreamer Kafka Connector_ is a ready-made pluggable Lightstreamer Adapter that enables event streaming from a Kafka broker to the internet.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public ProxyAdapterClient(ProxyAdapterClientOptions options) {

public void start(DataProvider provider) throws RemotingException {
logger.info(
"Starting connection with Lighstreamer'server Proxy Adapter at {}:{}",
"Starting connection with Lightstreamer'server Proxy Adapter at {}:{}",
options.hostname,
options.port);
dataProviderServer = new DataProviderServer();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ void shouldConfigWithRequiredParameters() {
// Put valid address and go on checking
props.put(
LightstreamerConnectorConfig.LIGHTSTREAMER_PROXY_ADAPTER_ADDRESS,
"lighstreamer_host:6661");
"lightstreamer_host:6661");

// No topic.mappings
ce = assertThrows(ConfigException.class, () -> new LightstreamerConnectorConfig(props));
Expand Down

0 comments on commit 663dd21

Please sign in to comment.