Skip to content

Commit

Permalink
[Elastic connectors] Enable minute frequency for incremental syncs (e…
Browse files Browse the repository at this point in the history
…lastic#176603)

## Summary

Enable "minute" frequency for incremental syncs. Default intervals are
every 5, 10, 30 minutes.
  • Loading branch information
vidok authored Feb 12, 2024
1 parent 915500b commit 46c10ec
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,11 @@ export const ConnectorContentScheduling: React.FC<ConnectorContentSchedulingProp
<ConnectorCronEditor
disabled={isGated}
frequencyBlockList={
type === SyncJobType.ACCESS_CONTROL || type === SyncJobType.FULL ? [] : undefined
type === SyncJobType.ACCESS_CONTROL ||
type === SyncJobType.FULL ||
type === SyncJobType.INCREMENTAL
? []
: undefined
}
scheduling={scheduling[type]}
type={type}
Expand Down

0 comments on commit 46c10ec

Please sign in to comment.