mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Ent search 3392 fix canceling syncs (#145885)
This fixes broken functionality where syncs weren't being canceled, caused by a missed index mapping refactor.
This commit is contained in:
parent
0c178e4b80
commit
62a90f8046
2 changed files with 4 additions and 4 deletions
|
@ -39,7 +39,7 @@ describe('addConnector lib function', () => {
|
|||
must: [
|
||||
{
|
||||
term: {
|
||||
connector_id: 'connectorId',
|
||||
'connector.id': 'connectorId',
|
||||
},
|
||||
},
|
||||
{
|
||||
|
@ -63,7 +63,7 @@ describe('addConnector lib function', () => {
|
|||
must: [
|
||||
{
|
||||
term: {
|
||||
connector_id: 'connectorId',
|
||||
'connector.id': 'connectorId',
|
||||
},
|
||||
},
|
||||
{
|
||||
|
|
|
@ -21,7 +21,7 @@ export const cancelSyncs = async (
|
|||
must: [
|
||||
{
|
||||
term: {
|
||||
connector_id: connectorId,
|
||||
'connector.id': connectorId,
|
||||
},
|
||||
},
|
||||
{
|
||||
|
@ -45,7 +45,7 @@ export const cancelSyncs = async (
|
|||
must: [
|
||||
{
|
||||
term: {
|
||||
connector_id: connectorId,
|
||||
'connector.id': connectorId,
|
||||
},
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue