This repository has been archived by the owner on Aug 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed issue with invalid cron expression (#1472)
- Loading branch information
1 parent
77ee7eb
commit 36b8a2e
Showing
3 changed files
with
37 additions
and
21 deletions.
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
11 changes: 11 additions & 0 deletions
11
modules/engines/engine-xsjob/src/test/resources/TestXSKJobTransformerCronExpression.xsjob
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,11 @@ | ||
{ | ||
"description": "My Job configuration", | ||
"action": "xsjob_cron_demo:handler.xsjslib::consolePrintSuccess", | ||
"schedules": [ | ||
{ | ||
"description": "Execute at 10:30:00pm, on every Monday, Tuesday, Wednesday, Thursday and Friday, every month", | ||
"xscron": "* * * MON,TUE,WED,THU,FRI 22 30 0", | ||
"parameter": {} | ||
} | ||
] | ||
} |