I have a gateway scheduled script, configured every minute, enabled, etc. And for some reason, it is not running. I've added a simple code to check if it's running and it isn't. I check the logs, and there is nothing there. What could be the reason?
def onScheduledEvent():
system.util.getLogger("ScheduledScript").info("Script is running")
I've also added errors in the script to see if the errors would get logged, and nothing is getting logged, which indicates that the script isn't running.
It's a scheduled event script. It gets called based on a specific time. In my case, it's meant to be called every minute. In the script you define the function, and in settings you specify how often the script is going to be called.
Cheers for that. Yes, I was creating the gateway scripts in the global project (which was not inheritable). I knew it would be something simple! Thanks!