mirror of https://github.com/apache/druid.git
fix missing json property names
This commit is contained in:
parent
138860696a
commit
71b19af61f
|
@ -103,10 +103,10 @@ public class IrcFirehoseFactory implements FirehoseFactory
|
||||||
|
|
||||||
@JsonCreator
|
@JsonCreator
|
||||||
public IrcFirehoseFactory(
|
public IrcFirehoseFactory(
|
||||||
@JsonProperty String nick,
|
@JsonProperty("name") String nick,
|
||||||
@JsonProperty String host,
|
@JsonProperty("host") String host,
|
||||||
@JsonProperty List<String> channels,
|
@JsonProperty("channels") List<String> channels,
|
||||||
@JsonProperty IrcDecoder decoder
|
@JsonProperty("decoder") IrcDecoder decoder
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
this.nick = nick;
|
this.nick = nick;
|
||||||
|
|
Loading…
Reference in New Issue