mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Check for missing encrypted credentials
This commit is contained in:
parent
49e69a54bd
commit
4d048af384
@ -239,8 +239,17 @@ var api = module.exports = {
|
|||||||
throw error;
|
throw error;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
if (encryptionEnabled) {
|
||||||
|
// Our config expects the credentials to be encrypted but the encrypted object is not found
|
||||||
|
var error = new Error("Encrypted credentials not found");
|
||||||
|
error.code = "credentials_load_failed";
|
||||||
|
throw error
|
||||||
|
} else {
|
||||||
|
// credentialSecret is set to False
|
||||||
|
log.warn("Using Unecrypted credentials")
|
||||||
credentialCache = credentials;
|
credentialCache = credentials;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
if (clearInvalidFlag) {
|
if (clearInvalidFlag) {
|
||||||
// TODO: this delves too deep into Project structure
|
// TODO: this delves too deep into Project structure
|
||||||
if (activeProject) {
|
if (activeProject) {
|
||||||
|
Loading…
Reference in New Issue
Block a user