Bugfix
This commit is contained in:
parent
cee56d9480
commit
0e95334ef7
@ -33,7 +33,16 @@ const connection = mysql.createConnection({
|
|||||||
: undefined,
|
: undefined,
|
||||||
timeout: 5000,
|
timeout: 5000,
|
||||||
ssl: {
|
ssl: {
|
||||||
ca: fs.readFileSync(process.env.DSQL_SSL_CA_PATH || ""),
|
ca: (() => {
|
||||||
|
try {
|
||||||
|
if (process.env.DSQL_SSL_CA_PATH) {
|
||||||
|
return fs.readFileSync(process.env.DSQL_SSL_CA_PATH);
|
||||||
|
}
|
||||||
|
return undefined;
|
||||||
|
} catch (error) {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
})(),
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -15,7 +15,16 @@ const connection = mysql.createConnection({
|
|||||||
: undefined,
|
: undefined,
|
||||||
timeout: 5000,
|
timeout: 5000,
|
||||||
ssl: {
|
ssl: {
|
||||||
ca: fs.readFileSync(process.env.DSQL_SSL_CA_PATH || ""),
|
ca: (() => {
|
||||||
|
try {
|
||||||
|
if (process.env.DSQL_SSL_CA_PATH) {
|
||||||
|
return fs.readFileSync(process.env.DSQL_SSL_CA_PATH);
|
||||||
|
}
|
||||||
|
return undefined;
|
||||||
|
} catch (error) {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
})(),
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "datasquirel",
|
"name": "datasquirel",
|
||||||
"version": "1.9.7",
|
"version": "1.9.8",
|
||||||
"description": "Cloud-based SQL data management tool",
|
"description": "Cloud-based SQL data management tool",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"bin": {
|
"bin": {
|
||||||
|
Loading…
Reference in New Issue
Block a user