Disable Property of Azure Functions not working in

2019-04-26 21:45发布

I have Azure function with timer trigger.

public static void Run([TimerTrigger("0 */15 * * * *"), Disable("True")]TimerInfo myTimer, TraceWriter log)

Here the Disable("true") is not working. it generates the function.json as "disabled": "True", which is not correct. It should be "disabled": True, Disable only accepts string value. Is there any way to change this? or any other way to disable function?

4条回答
来,给爷笑一个
2楼-- · 2019-04-26 22:22

Have you tried modifying the host.json inside your solution? It has the following properties for you to specify which functions to load on runtime.

// Array of functions to load. Only functions in this list will be enabled.
// If not specified, all functions are enabled.
"functions": ["QueueProcessor", "GitHubWebHook"]

Note that if you have multiple Function App projects in your solution, you will also need to make to change to their corresponding host.json (i.e. each project has their own host.json)

Documentation: https://github.com/Azure/azure-webjobs-sdk-script/wiki/host.json

查看更多
Anthone
3楼-- · 2019-04-26 22:29

The string typed value - "disabled": "true" also could disable the function. Please see the test result as following.

Here is my function definition.

public static void Run([TimerTrigger("0 */5 * * * *"),Disable("true")]TimerInfo myTimer, TraceWriter log)

Here is the published function on Azure portal.

enter image description here

查看更多
手持菜刀,她持情操
4楼-- · 2019-04-26 22:31

Functions 2.x can be disabled individually via local.settings.json in the following manner

{
    "IsEncrypted": false,
    "Values": {
    "AzureWebJobs.MyFunctionNameOne.Disabled": "true",
    "AzureWebJobs.MyFunctionNameTwo.Disabled": "true",
    ...
    }
}

Ref: https://docs.microsoft.com/en-us/azure/azure-functions/disable-function#functions-2x---all-languages

查看更多
够拽才男人
5楼-- · 2019-04-26 22:37

Disable properties default values is true.

Use Disable() instead of Disable("true").

So the code will look like

public static void Run([TimerTrigger("0 */15 * * * *"), Disable()]TimerInfo myTimer, TraceWriter log) .

If you want to enable the function use Disable("False").

查看更多
登录 后发表回答