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
|
||||
public IrcFirehoseFactory(
|
||||
@JsonProperty String nick,
|
||||
@JsonProperty String host,
|
||||
@JsonProperty List<String> channels,
|
||||
@JsonProperty IrcDecoder decoder
|
||||
@JsonProperty("name") String nick,
|
||||
@JsonProperty("host") String host,
|
||||
@JsonProperty("channels") List<String> channels,
|
||||
@JsonProperty("decoder") IrcDecoder decoder
|
||||
)
|
||||
{
|
||||
this.nick = nick;
|
||||
|
|
Loading…
Reference in New Issue