当我尝试运行下面定义的azure函数时,我得到以下错误日志
The 'my_function' function is in error: The binding name my_function_timer is invalid. Please assign a valid name to the binding.
Azure函数的有效绑定名称的格式是什么?
函数定义
我有两个文件
my_function
目录:
-
__init__.py
包含函数的python代码
-
function.json
包含函数的配置
这是这两个文件的内容
__init\uuuu。py公司
import azure.functions as func
import logging
def main(my_function_timer: func.TimerRequest) -> None:
logging.info("My function starts")
print("hello world")
logging.info("My function stops")
作用json
{
"scriptFile": "__init__.py",
"bindings": [
{
"name": "my_function_timer",
"type": "timerTrigger",
"direction": "in",
"schedule": "0 0 1 * * *"
}
]
}
我使用
Azure/functions-action@v1
github操作