azure-functions-templates icon indicating copy to clipboard operation
azure-functions-templates copied to clipboard

PowerShell - The function stopped run Function App

Open DeV1L opened this issue 5 years ago • 0 comments

The function was working for a while. Suddenly it stopped run on the schedule. But it run manually well. The only way I've found to fix it temporary it's stop and start (not restart) whole application in the portal. But it helps only for a day o two.

Support team told that PowerShell function with 1.x runtime is experimental and they can't help.

function.json

{
  'bindings': [
    {
      'name': 'myTimer',
      'type': 'timerTrigger',
      'direction': 'in',
      'schedule': '0 0 3 * * *'
    }
  ],
  'disabled': false
}

DeV1L avatar Jun 13 '19 09:06 DeV1L