Skip to content

Instantly share code, notes, and snippets.

@StefanRiedmann
Created January 26, 2018 18:02
Show Gist options
  • Save StefanRiedmann/1687ba5753de444ec700f6d07ce04cbe to your computer and use it in GitHub Desktop.
Save StefanRiedmann/1687ba5753de444ec700f6d07ce04cbe to your computer and use it in GitHub Desktop.
Disable Azure Function
[FunctionName("Sentiment")]
[Disable]
public static async Task Run([QueueTrigger(Constants.SentimentRequestQueue, Connection = "AzureWebJobsStorage")]SentimentRequest request,
[Queue(Constants.SlackmessageRequestQueue, Connection = "AzureWebJobsStorage")]ICollector<SlackMessage> outputQueueItem,
TraceWriter log)
{
//see https://github.com/StefanRiedmann/AzureFunctionsForSlack
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment