@malloy-publisher/server 0.0.177 → 0.0.178
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/server.js +4 -1
- package/package.json +1 -1
- package/src/service/connection.ts +3 -0
package/dist/server.js
CHANGED
|
@@ -221171,7 +221171,10 @@ async function createProjectConnections(connections = [], projectPath = "", isUp
|
|
|
221171
221171
|
},
|
|
221172
221172
|
poolOptions: {
|
|
221173
221173
|
min: 1,
|
|
221174
|
-
max: 5
|
|
221174
|
+
max: 5,
|
|
221175
|
+
testOnBorrow: false,
|
|
221176
|
+
testOnReturn: false,
|
|
221177
|
+
testWhileIdle: true
|
|
221175
221178
|
}
|
|
221176
221179
|
};
|
|
221177
221180
|
const snowflakeConnection = new import_db_snowflake.SnowflakeConnection(connection.name, snowflakeConnectionOptions);
|
package/package.json
CHANGED
|
@@ -1094,6 +1094,9 @@ export async function createProjectConnections(
|
|
|
1094
1094
|
poolOptions: {
|
|
1095
1095
|
min: 1,
|
|
1096
1096
|
max: 5,
|
|
1097
|
+
testOnBorrow: false,
|
|
1098
|
+
testOnReturn: false,
|
|
1099
|
+
testWhileIdle: true,
|
|
1097
1100
|
},
|
|
1098
1101
|
};
|
|
1099
1102
|
const snowflakeConnection = new SnowflakeConnection(
|