From 6a070fb40308438c758ba8ab69399845bd698391 Mon Sep 17 00:00:00 2001 From: Tsuyoshi Ushio Date: Fri, 2 Apr 2021 09:51:42 -0700 Subject: [PATCH] fix the issue of rabbitmq trigger w/o stroage account (#2531) --- src/Azure.Functions.Cli/Common/Constants.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Azure.Functions.Cli/Common/Constants.cs b/src/Azure.Functions.Cli/Common/Constants.cs index 07f3f107c..cf393281a 100644 --- a/src/Azure.Functions.Cli/Common/Constants.cs +++ b/src/Azure.Functions.Cli/Common/Constants.cs @@ -70,7 +70,7 @@ internal static class Constants { WorkerRuntime.powershell, new [] { "mcr.microsoft.com/azure-functions/powershell", "microsoft/azure-functions-powershell" } } }; - public static readonly string[] TriggersWithoutStorage = new[] { "httptrigger", "kafkatrigger" }; + public static readonly string[] TriggersWithoutStorage = new[] { "httptrigger", "kafkatrigger", "rabbitmqtrigger" }; public static class Errors {