I recently released a new feature in my calendar addon that offloads some long processing function to a time triggered function, which is created like this:
```
const trigger =
ScriptApp.newTrigger('runBatchJob').timeBased().after(1000).create();
```
While developing, it was working all fine while we are on HEAD. After releasing to a production branch, I noticed a number of users creating the trigger but it never runs after that.
After testing it on production with a different email, I noticed that my triggers are disabled (screenshot below).
I found this bug ticket
issue which says that this is a bug on the V8 runtime and this issue is not happening if I use the `DEPRECATED_ES5` runtime.
Are you running time-based triggers on your app? which runtime are you using? What other alternatives do I have to run some of my long-processing function async?
Thanks
