-
Notifications
You must be signed in to change notification settings - Fork 413
New issue
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
feat(queue): enhance getJobScheduler method to include template information #2929
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
4ec1198
feat(queue): add getJobSchedulerTemplate method
roggervalf db7ac3f
chore: remove console
roggervalf 7fc51e2
chore: remove debug statements
roggervalf ce1d9a4
refactor(scheduler): change method name
roggervalf 826ed0f
refactor(scheduler): save template data in scheduler
roggervalf a769497
chore: remove unused variable
roggervalf 8cf25d1
refactor: enhance getJobScheduler method
roggervalf a660b1e
chore: remove unused method
roggervalf 9d4779e
refactor: save template attributes if necessary
roggervalf File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { JobsOptions } from '../types'; | ||
|
||
export interface JobSchedulerTemplateJson<D = any> { | ||
data?: D; | ||
opts?: Omit<JobsOptions, 'jobId' | 'repeat' | 'delay'>; | ||
} | ||
|
||
export interface JobSchedulerJson<D = any> { | ||
key: string; // key is actually the job scheduler id | ||
name: string; | ||
id?: string | null; | ||
endDate: number | null; | ||
tz: string | null; | ||
pattern: string | null; | ||
every?: string | null; | ||
next?: number; | ||
template?: JobSchedulerTemplateJson<D>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -360,6 +360,11 @@ describe('Job Scheduler', function () { | |
tz: null, | ||
pattern: '*/2 * * * * *', | ||
every: null, | ||
template: { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe add cases where data / opts are undefined? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. addressed as well |
||
data: { | ||
foo: 'bar', | ||
}, | ||
}, | ||
}); | ||
|
||
this.clock.tick(nextTick); | ||
|
@@ -687,6 +692,17 @@ describe('Job Scheduler', function () { | |
name: 'rrule', | ||
}); | ||
|
||
const scheduler = await queue.getJobScheduler('rrule'); | ||
|
||
expect(scheduler).to.deep.equal({ | ||
key: 'rrule', | ||
name: 'rrule', | ||
endDate: null, | ||
tz: null, | ||
pattern: 'RRULE:FREQ=SECONDLY;INTERVAL=2;WKST=MO', | ||
every: null, | ||
}); | ||
|
||
this.clock.tick(nextTick); | ||
|
||
let prev: any; | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you are checking if data is defined here, why having a default in the next line?:
data: JSON.parse(schedulerAttributes.data || '{}')
Also, could it potentially be the case that you have an empty data but options?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah I refactored a little bit to not save this data if it's empty, same for template opts