Skip to content

Commit 58afd55

Browse files
authored
Merge pull request #33 from aiven/ivanyu/rename-concat
Fix ConcatField -> ConcatFields in README
2 parents e8b7f7a + 7ced82a commit 58afd55

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -104,15 +104,15 @@ transforms.TombstoneHandler.type=io.aiven.kafka.connect.transforms.TombstoneHand
104104
transforms.TombstoneHandler.behavior=drop_silent
105105
```
106106

107-
### `ConcatField`
107+
### `ConcatFields`
108108

109109
This transformation adds a new field to the message with a key of type string and a value of string which is the
110110
concatenation of the requested fields.
111111

112112
Exists in two variants:
113113

114-
- `io.aiven.kafka.connect.transforms.ConcatField$Key` - works on keys;
115-
- `io.aiven.kafka.connect.transforms.ConcatField$Value` - works on values.
114+
- `io.aiven.kafka.connect.transforms.ConcatFields$Key` - works on keys;
115+
- `io.aiven.kafka.connect.transforms.ConcatFields$Value` - works on values.
116116

117117
The transformation defines the following configurations:
118118
- `field.names` - A comma-separated list of fields to concatenate.
@@ -123,12 +123,12 @@ The transformation defines the following configurations:
123123
Here is an example of this transformation configuration:
124124

125125
```
126-
transforms=ConcatField
127-
transforms.ConcatField.type=io.aiven.kafka.connect.transforms.ConcatField$Value
128-
transforms.ConcatField.field.names=["test","foo","bar","age"]
129-
transforms.ConcatField.output.field.name="combined"
130-
transforms.ConcatField.delimiter="-"
131-
transforms.ConcatField.field.replace.missing="*"
126+
transforms=ConcatFields
127+
transforms.ConcatFields.type=io.aiven.kafka.connect.transforms.ConcatFields$Value
128+
transforms.ConcatFields.field.names=["test","foo","bar","age"]
129+
transforms.ConcatFields.output.field.name="combined"
130+
transforms.ConcatFields.delimiter="-"
131+
transforms.ConcatFields.field.replace.missing="*"
132132
```
133133

134134
## License

0 commit comments

Comments
 (0)