Skip to content

Commit

Permalink
[8.11] [Enterprise Search] Enable minute scheduling for full-sync (#1…
Browse files Browse the repository at this point in the history
…69510) (#169686)

# Backport

This will backport the following commits from `main` to `8.11`:
- [[Enterprise Search] Enable minute scheduling for full-sync
(#169510)](#169510)

<!--- Backport version: 8.9.7 -->

### Questions ?
Please refer to the [Backport tool
documentation](https://github.com/sqren/backport)

<!--BACKPORT [{"author":{"name":"Efe Gürkan
YALAMAN","email":"[email protected]"},"sourceCommit":{"committedDate":"2023-10-24T16:47:44Z","message":"[Enterprise
Search] Enable minute scheduling for full-sync (#169510)\n\n##
Summary\r\n\r\nEnable minute scheduling for full content
sync\r\n\r\n\r\nhttps://github.com/elastic/kibana/assets/1410658/0c4b2c00-dac7-4d64-8406-cf34b7775f8b\r\n\r\n\r\n\r\n###
Checklist\r\n\r\n- [ ] [Unit or
functional\r\ntests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)\r\nwere
updated or added to match the most common scenarios\r\n- [x] Any UI
touched in this PR is usable by keyboard only (learn more\r\nabout
[keyboard accessibility](https://webaim.org/techniques/keyboard/))\r\n-
[x] Any UI touched in this PR does not create any new axe
failures\r\n(run axe in
browser:\r\n[FF](https://addons.mozilla.org/en-US/firefox/addon/axe-devtools/),\r\n[Chrome](https://chrome.google.com/webstore/detail/axe-web-accessibility-tes/lhdoppojpmngadmnindnejefpokejbdd?hl=en-US))\r\n-
[x] This renders correctly on smaller devices using a
responsive\r\nlayout. (You can test this [in
your\r\nbrowser](https://www.browserstack.com/guide/responsive-testing-on-local-server))","sha":"136cdfab97114aed0496cb70d0e3047eec753e58","branchLabelMapping":{"^v8.12.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["release_note:skip","Team:EnterpriseSearch","v8.11.0","v8.12.0"],"number":169510,"url":"https://github.com/elastic/kibana/pull/169510","mergeCommit":{"message":"[Enterprise
Search] Enable minute scheduling for full-sync (#169510)\n\n##
Summary\r\n\r\nEnable minute scheduling for full content
sync\r\n\r\n\r\nhttps://github.com/elastic/kibana/assets/1410658/0c4b2c00-dac7-4d64-8406-cf34b7775f8b\r\n\r\n\r\n\r\n###
Checklist\r\n\r\n- [ ] [Unit or
functional\r\ntests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)\r\nwere
updated or added to match the most common scenarios\r\n- [x] Any UI
touched in this PR is usable by keyboard only (learn more\r\nabout
[keyboard accessibility](https://webaim.org/techniques/keyboard/))\r\n-
[x] Any UI touched in this PR does not create any new axe
failures\r\n(run axe in
browser:\r\n[FF](https://addons.mozilla.org/en-US/firefox/addon/axe-devtools/),\r\n[Chrome](https://chrome.google.com/webstore/detail/axe-web-accessibility-tes/lhdoppojpmngadmnindnejefpokejbdd?hl=en-US))\r\n-
[x] This renders correctly on smaller devices using a
responsive\r\nlayout. (You can test this [in
your\r\nbrowser](https://www.browserstack.com/guide/responsive-testing-on-local-server))","sha":"136cdfab97114aed0496cb70d0e3047eec753e58"}},"sourceBranch":"main","suggestedTargetBranches":["8.11"],"targetPullRequestStates":[{"branch":"8.11","label":"v8.11.0","labelRegex":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"},{"branch":"main","label":"v8.12.0","labelRegex":"^v8.12.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/169510","number":169510,"mergeCommit":{"message":"[Enterprise
Search] Enable minute scheduling for full-sync (#169510)\n\n##
Summary\r\n\r\nEnable minute scheduling for full content
sync\r\n\r\n\r\nhttps://github.com/elastic/kibana/assets/1410658/0c4b2c00-dac7-4d64-8406-cf34b7775f8b\r\n\r\n\r\n\r\n###
Checklist\r\n\r\n- [ ] [Unit or
functional\r\ntests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)\r\nwere
updated or added to match the most common scenarios\r\n- [x] Any UI
touched in this PR is usable by keyboard only (learn more\r\nabout
[keyboard accessibility](https://webaim.org/techniques/keyboard/))\r\n-
[x] Any UI touched in this PR does not create any new axe
failures\r\n(run axe in
browser:\r\n[FF](https://addons.mozilla.org/en-US/firefox/addon/axe-devtools/),\r\n[Chrome](https://chrome.google.com/webstore/detail/axe-web-accessibility-tes/lhdoppojpmngadmnindnejefpokejbdd?hl=en-US))\r\n-
[x] This renders correctly on smaller devices using a
responsive\r\nlayout. (You can test this [in
your\r\nbrowser](https://www.browserstack.com/guide/responsive-testing-on-local-server))","sha":"136cdfab97114aed0496cb70d0e3047eec753e58"}}]}]
BACKPORT-->

Co-authored-by: Efe Gürkan YALAMAN <[email protected]>
  • Loading branch information
kibanamachine and efegurkan authored Oct 24, 2023
1 parent 89f1a28 commit c277b56
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,9 @@ export const ConnectorContentScheduling: React.FC<ConnectorContentSchedulingProp
<EuiFlexItem>
<ConnectorCronEditor
disabled={isGated}
frequencyBlockList={type === SyncJobType.ACCESS_CONTROL ? [] : undefined}
frequencyBlockList={
type === SyncJobType.ACCESS_CONTROL || type === SyncJobType.FULL ? [] : undefined
}
scheduling={scheduling[type]}
type={type}
onReset={() => {
Expand Down

0 comments on commit c277b56

Please sign in to comment.