Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,14 @@ public class RabbitMQAbstractConfig implements Serializable {
@FieldDoc(
required = false,
defaultValue = "guest",
sensitive = true,
help = "The username used to authenticate to RabbitMQ")
private String username = "guest";

@FieldDoc(
required = false,
defaultValue = "guest",
sensitive = true,
help = "The password used to authenticate to RabbitMQ")
private String password = "guest";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,14 @@ public class SolrSinkConfig implements Serializable {
@FieldDoc(
required = false,
defaultValue = "",
sensitive = true,
help = "The username to use for basic authentication")
private String username;

@FieldDoc(
required = false,
defaultValue = "",
sensitive = true,
help = "The password to use for basic authentication")
private String password;

Expand Down