@teamkeel/functions-runtime 0.386.4 → 0.387.1-next.1
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/package.json +1 -1
- package/src/database.js +2 -1
package/package.json
CHANGED
package/src/database.js
CHANGED
|
@@ -163,7 +163,8 @@ function getDialect() {
|
|
|
163
163
|
// Although I doubt we will run into these freeze/thaw issues if idleTimeoutMillis is always shorter than the
|
|
164
164
|
// time is takes for a lambda to freeze (which is not a constant, but could be as short as several minutes,
|
|
165
165
|
// https://www.pluralsight.com/resources/blog/cloud/how-long-does-aws-lambda-keep-your-idle-functions-around-before-a-cold-start)
|
|
166
|
-
idleTimeoutMillis:
|
|
166
|
+
idleTimeoutMillis: 0,
|
|
167
|
+
connectionTimeoutMillis: 0,
|
|
167
168
|
connectionString: mustEnv("KEEL_DB_CONN"),
|
|
168
169
|
}),
|
|
169
170
|
});
|