Skip to content

Commit

Permalink
NIFI-1030 made InvokeHttp basic auth password a sensitive value
Browse files Browse the repository at this point in the history
Signed-off-by: Aldrin Piri <[email protected]>
  • Loading branch information
Joseph Percivall authored and apiri committed Oct 8, 2015
1 parent 2583d78 commit b4bfcc1
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,7 @@ public interface Config {
.displayName("Basic Authentication Password")
.description("The password to be used by the client to authenticate against the Remote URL.")
.required(false)
.sensitive(true)
.addValidator(StandardValidators.createRegexMatchingValidator(Pattern.compile("^[\\x20-\\x7e\\x80-\\xff]+$")))
.build();

Expand Down

0 comments on commit b4bfcc1

Please sign in to comment.