Skip to content

Commit 9b41e29

Browse files
committed
Correct default plugin type
1 parent 5808281 commit 9b41e29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/handlers/abstract-handler.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class AbstractHandler {
2020
* @param {Object} responseObject base response object to be passed through plugins
2121
* @param {LambdaType[]} supportedPluginTypes list of types this plugin supports
2222
*/
23-
constructor (defaultPlugins = [], responseObject = {}, supportedPluginTypes = [ LambdaType.GENERIC ]) {
23+
constructor (defaultPlugins = [], responseObject = {}, supportedPluginTypes = [ LambdaType.DEFAULT ]) {
2424
this.supportedPluginTypes = supportedPluginTypes
2525
this.responseObject = responseObject
2626
this.registeredPlugins = [

0 commit comments

Comments
 (0)