This is an automated email from the ASF dual-hosted git repository. sanjeevrk pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/pulsar.git
The following commit(s) were added to refs/heads/master by this push: new 032df08 ignore unknown properties in worker config (#3125) 032df08 is described below commit 032df08ffbec1239da009302a0b5dae76f86110f Author: Boyang Jerry Peng <jerry.boyang.p...@gmail.com> AuthorDate: Tue Dec 4 16:31:04 2018 -0800 ignore unknown properties in worker config (#3125) --- .../src/main/java/org/apache/pulsar/functions/worker/WorkerConfig.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pulsar-functions/worker/src/main/java/org/apache/pulsar/functions/worker/WorkerConfig.java b/pulsar-functions/worker/src/main/java/org/apache/pulsar/functions/worker/WorkerConfig.java index 04435ef..0cc214c 100644 --- a/pulsar-functions/worker/src/main/java/org/apache/pulsar/functions/worker/WorkerConfig.java +++ b/pulsar-functions/worker/src/main/java/org/apache/pulsar/functions/worker/WorkerConfig.java @@ -18,6 +18,7 @@ */ package org.apache.pulsar.functions.worker; +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.dataformat.yaml.YAMLFactory; import com.google.common.collect.Sets; @@ -47,6 +48,7 @@ import lombok.experimental.Accessors; @EqualsAndHashCode @ToString @Accessors(chain = true) +@JsonIgnoreProperties(ignoreUnknown = true) public class WorkerConfig implements Serializable, PulsarConfiguration { private static final long serialVersionUID = 1L;