From 2d2399cae8125726f264d823afc05ef4cdde8e63 Mon Sep 17 00:00:00 2001 From: Sebastian Alff <33040347+donalffons@users.noreply.github.com> Date: Mon, 28 Feb 2022 11:06:47 +0100 Subject: [PATCH] Add ts-comment on how to remove maxInstances limit for functions --- src/function-configuration.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/function-configuration.ts b/src/function-configuration.ts index 73cc64eac..3e7b8ede6 100644 --- a/src/function-configuration.ts +++ b/src/function-configuration.ts @@ -127,7 +127,8 @@ export interface RuntimeOptions { minInstances?: number; /** - * Max number of actual instances allowed to be running in parallel. + * Max number of actual instances allowed to be running in parallel. Pass '0' + * to remove the limit. */ maxInstances?: number;