Skip to content

Commit

Permalink
chore(lambda): new runtimes were incorrectly marked to support inline…
Browse files Browse the repository at this point in the history
… code (#5134)
  • Loading branch information
nija-at authored and RomainMuller committed Nov 20, 2019
1 parent e62f9fb commit feb1f9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/@aws-cdk/aws-lambda/lib/runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ export class Runtime {
/** @deprecated Use {@link NODEJS_10_X} */
public static readonly NODEJS_8_10 = new Runtime('nodejs8.10', RuntimeFamily.NODEJS, { supportsInlineCode: true });
public static readonly NODEJS_10_X = new Runtime('nodejs10.x', RuntimeFamily.NODEJS, { supportsInlineCode: true });
public static readonly NODEJS_12_X = new Runtime('nodejs12.x', RuntimeFamily.NODEJS, { supportsInlineCode: true });
public static readonly NODEJS_12_X = new Runtime('nodejs12.x', RuntimeFamily.NODEJS);
public static readonly PYTHON_2_7 = new Runtime('python2.7', RuntimeFamily.PYTHON, { supportsInlineCode: true });
public static readonly PYTHON_3_6 = new Runtime('python3.6', RuntimeFamily.PYTHON, { supportsInlineCode: true });
public static readonly PYTHON_3_7 = new Runtime('python3.7', RuntimeFamily.PYTHON, { supportsInlineCode: true });
public static readonly PYTHON_3_8 = new Runtime('python3.8', RuntimeFamily.PYTHON, { supportsInlineCode: true });
public static readonly PYTHON_3_8 = new Runtime('python3.8', RuntimeFamily.PYTHON);
public static readonly JAVA_8 = new Runtime('java8', RuntimeFamily.JAVA);
public static readonly JAVA_11 = new Runtime('java11', RuntimeFamily.JAVA);
public static readonly DOTNET_CORE_1 = new Runtime('dotnetcore1.0', RuntimeFamily.DOTNET_CORE);
Expand Down

0 comments on commit feb1f9b

Please sign in to comment.