No need to strip quotes from password.  The problem was a bug
in my expect/tcl script's quote escape syntax.
This commit is contained in:
ghubstan 2020-04-26 10:29:01 -03:00
parent 56f2923ade
commit dee5e4cf7e
No known key found for this signature in database
GPG Key ID: E35592D6800A861E

View File

@ -22,7 +22,7 @@ class PasswordCallCredentials extends CallCredentials {
public PasswordCallCredentials(String passwordValue) {
if (passwordValue == null)
throw new IllegalArgumentException(format("'%s' header value must not be null", PASSWORD_KEY));
this.passwordValue = passwordValue.replace("\"", "");
this.passwordValue = passwordValue;
}
@Override