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 cdc2061 commit 3193697Copy full SHA for 3193697
src/index.js
@@ -330,6 +330,7 @@ class Offline {
330
const funName = key;
331
const servicePath = path.join(this.serverless.config.servicePath, this.options.location);
332
const funOptions = functionHelper.getFunctionOptions(fun, key, servicePath);
333
+ debugLog(`funOptions ${JSON.stringify(funOptions, null, 2)} `);
334
335
this.printBlankLine();
336
debugLog(funName, 'runtime', serviceRuntime, funOptions.babelOptions || '');
@@ -386,6 +387,7 @@ class Offline {
386
387
const routeConfig = {
388
cors,
389
auth: authStrategyName,
390
+ timeout: { socket: false },
391
};
392
393
if (routeMethod !== 'HEAD' && routeMethod !== 'GET') {
0 commit comments