We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The processor that run in Apps is running in a loop, independent of your time to run new job.
processor
When an job have an interval time, the expected behavior is run the job only when the time is going.
In a job with interval time, after first execution the processor run after every time, like a loop.
public async extendConfiguration(configuration: IConfigurationExtend): Promise<void> { await configuration.scheduler.registerProcessors([ { id: 'SIMPLE_JOB', startupSetting: { type: StartupType.ONETIME, when: new Date( new Date().getTime() + 1 * 60000 ) }, processor: async(jobContext: IJobContext,read: IRead, modify: IModify, http: IHttp, persis: IPersistence ) => { this.getLogger().log('Simple job running') } } ]) }
The text was updated successfully, but these errors were encountered:
Hi and thanks for reporting this.
We'll check with the Product Manager as this should probably be in a different repo.
We'll keep you posted.
Sorry, something went wrong.
Hi, I spoke the Product team who replied as follows:
We are aware about it. It's not a problem with Apps Engine itself, but the Apps Engine squad are taking care of it.
This PR should fix it.
#22882
Thanks.
Thanks @johncrisp for your report! Has you describe, the problem is solved in 3.17.1 :)
No branches or pull requests
Description:
The
processor
that run in Apps is running in a loop, independent of your time to run new job.Steps to reproduce:
Expected behavior:
When an job have an interval time, the expected behavior is run the job only when the time is going.
Actual behavior:
In a job with interval time, after first execution the processor run after every time, like a loop.
Server Setup Information:
Client Setup Information
Additional context
Example of Job on App
Example of the behavior
The text was updated successfully, but these errors were encountered: