Skip to content

Commit

Permalink
Remove the isEmpty check for cron
Browse files Browse the repository at this point in the history
  • Loading branch information
aniketkatkar97 committed Oct 17, 2024
1 parent 757e7be commit 1c20a82
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ const TestSuiteIngestion: React.FC<TestSuiteIngestionProps> = ({
displayName: data.name ?? ingestionPipeline.displayName,
airflowConfig: {
...ingestionPipeline?.airflowConfig,
scheduleInterval: isEmpty(data.cron) ? undefined : data.cron,
scheduleInterval: data.cron,
},
loggerLevel: data.enableDebugLog ? LogLevels.Debug : LogLevels.Info,
sourceConfig: {
Expand Down

0 comments on commit 1c20a82

Please sign in to comment.