We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c63449 commit f066c6bCopy full SHA for f066c6b
src/node/utils/Settings.ts
@@ -941,11 +941,12 @@ exports.reloadSettings = () => {
941
logger.warn(`${dirtyWarning} File location: ${exports.dbSettings.filename}`);
942
}
943
944
- if (exports.dbType === 'rustydb') {
+ if (exports.dbType === 'rustydb' || exports.dbType === "sqlite") {
945
exports.dbSettings.filename = absolutePaths.makeAbsolute(exports.dbSettings.filename);
946
logger.warn(`File location: ${exports.dbSettings.filename}`);
947
948
949
+
950
if (exports.ip === '') {
951
// using Unix socket for connectivity
952
logger.warn('The settings file contains an empty string ("") for the "ip" parameter. The ' +
0 commit comments