You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When scheduling a function using cron, it does not throw error or log anything if failed
module JuliaWebServer
using Oxygen
using HTTP
@get"/greet"function(req::HTTP.Request)
return"hello world!"end@cron"*/2"functionerror_msg()::Nothingthrow("ERROR")
returnendserve()
end
The text was updated successfully, but these errors were encountered:
When scheduling a function using cron, it does not throw error or log anything if failed
The text was updated successfully, but these errors were encountered: