Github user harshach commented on a diff in the pull request:
https://github.com/apache/storm/pull/1868#discussion_r96109547
--- Diff:
external/storm-kafka-client/src/main/java/org/apache/storm/kafka/spout/StormStringDeserializer.java
---
@@ -15,22 +15,11 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-
package org.apache.storm.kafka.spout;
-import org.apache.kafka.clients.consumer.ConsumerRecord;
-
-import java.util.List;
-
-public class KafkaSpoutTuplesBuilderWildcardTopics<K,V> implements
KafkaSpoutTuplesBuilder<K,V> {
- private KafkaSpoutTupleBuilder<K, V> tupleBuilder;
+import org.apache.kafka.common.serialization.StringDeserializer;
- public KafkaSpoutTuplesBuilderWildcardTopics(KafkaSpoutTupleBuilder<K,
V> tupleBuilder) {
- this.tupleBuilder = tupleBuilder;
- }
+public class StormStringDeserializer extends StringDeserializer implements
SerializableDeserializer<String> {
--- End diff --
Do we still need this? users can configure the StringSerializer from
kafka-clients lib
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---