mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
typo fix
This commit is contained in:
parent
3648a1c19d
commit
f6af0f6826
2 changed files with 2 additions and 2 deletions
|
|
@ -61,7 +61,7 @@ public class ShellInterpreter extends Interpreter {
|
|||
LOGGER.info("Command timeout property: {}", getProperty(TIMEOUT_PROPERTY));
|
||||
executors = new HashMap<String, DefaultExecutor>();
|
||||
if (!StringUtils.isAnyEmpty(getProperty("zeppelin.shell.auth.type"))) {
|
||||
ShellSecurityImpl.createSecureCinfiguration(getProperty(), shell);
|
||||
ShellSecurityImpl.createSecureConfiguration(getProperty(), shell);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ public class ShellSecurityImpl {
|
|||
|
||||
private static Logger LOGGER = LoggerFactory.getLogger(ShellSecurityImpl.class);
|
||||
|
||||
public static void createSecureCinfiguration(Properties properties, String shell) {
|
||||
public static void createSecureConfiguration(Properties properties, String shell) {
|
||||
|
||||
String authType = properties.getProperty("zeppelin.shell.auth.type")
|
||||
.trim().toUpperCase();
|
||||
|
|
|
|||
Loading…
Reference in a new issue