Skip to content

Commit 83ff75c

Browse files
committed
Skip if function rutime is nodejs6.10
1 parent 4bd75b4 commit 83ff75c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class PkgPyFuncs {
5151
}
5252

5353
selectAll() {
54-
const functions = this.serverless.service.functions
54+
const functions = _.reject(this.serverless.service.functions, { runtime: 'nodejs6.10' });
5555
const info = _.map(functions, (target) => {
5656
return {
5757
name: target.name,

0 commit comments

Comments
 (0)