mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
(cherry picked from commit e65c405d46
)
Co-authored-by: Byron Hulcher <byron.hulcher@elastic.co>
This commit is contained in:
parent
e58e3a000e
commit
41fb58dbb9
2 changed files with 3 additions and 3 deletions
|
@ -94,7 +94,7 @@ describe('CrawlCustomSettingsFlyoutLogic', () => {
|
|||
|
||||
expect(http.get).toHaveBeenNthCalledWith(
|
||||
1,
|
||||
'/internal/enterprise_search/engines/some-engine/crawler/domain_configs',
|
||||
'/internal/app_search/engines/some-engine/crawler/domain_configs',
|
||||
{
|
||||
query: {
|
||||
'page[current]': 1,
|
||||
|
@ -104,7 +104,7 @@ describe('CrawlCustomSettingsFlyoutLogic', () => {
|
|||
);
|
||||
expect(http.get).toHaveBeenNthCalledWith(
|
||||
2,
|
||||
'/internal/enterprise_search/engines/some-engine/crawler/domain_configs',
|
||||
'/internal/app_search/engines/some-engine/crawler/domain_configs',
|
||||
{
|
||||
query: {
|
||||
'page[current]': 2,
|
||||
|
|
|
@ -210,7 +210,7 @@ export const CrawlCustomSettingsFlyoutLogic = kea<
|
|||
} = await http.get<{
|
||||
meta: Meta;
|
||||
results: DomainConfigFromServer[];
|
||||
}>(`/internal/enterprise_search/engines/${engineName}/crawler/domain_configs`, {
|
||||
}>(`/internal/app_search/engines/${engineName}/crawler/domain_configs`, {
|
||||
query: { 'page[current]': nextPage, 'page[size]': pageSize },
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue