1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-25 05:49:36 +02:00

Fixed fatal error while deploying flame to cluster

This commit is contained in:
Paweł Malak 2021-12-17 12:28:37 +01:00
parent 9dd3bd1f53
commit ee044ed2ff
3 changed files with 10 additions and 9 deletions

View file

@ -13,8 +13,8 @@ const initDockerSecrets = () => {
logger.log(`${upperProperty} was overwritten with docker secret value`);
}
} catch(e) {
logger.log('Failed to initialize docker secrets. Error: ' + e, 'ERROR');
} catch (e) {
logger.log(`Failed to initialize docker secrets. Error: ${e}`, 'ERROR');
}
};