Hey,
yesterday I deploy test scheduled function, but unfortunately there is no evidence the function to be invoked. As you can see on a screenshot everything looks correctly setuped and if I invoked it locally it works as expected. Do you have any suggestions?
P.S. I tested different function syntax, inline, toml schedules, etc
function:
import { Handler } from '@netlify/functions'
export const handler: Handler = async () => {
console.log('Processing complete')
return {
statusCode: 200,
}
}
netlify.toml
[functions."test"]
schedule = "*/2 * * * *"