Azure WebJobs - No functions found - How do I make a trigger-less job?

前端 未结 2 843
既然无缘
既然无缘 2021-02-19 01:23

I\'m new to Azure WebJobs, I\'ve run a sample where a user uploads an image to blob storage and inserts a record into the Queue, then the job retrieves that from the queue as a

2条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-02-19 01:45

    If you don't use any input/output attributes from the WebJobs SDK (QueueTrigger, Blob, Table, etc), you have to decorate the job with the NoAutomaticTrigger Attribute to be recognized by the SDK.

提交回复
热议问题