fix(#15188): Ingestion Pipeline Run response (#15202)

This commit is contained in:
Sachin Chaurasiya 2024-02-16 13:48:58 +05:30 committed by GitHub
parent 2120b38672
commit 7009fb7c77
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 7 deletions

View File

@ -12,7 +12,6 @@
*/
import { CheckOutlined } from '@ant-design/icons';
import { Button, Divider, Space } from 'antd';
import { AxiosError } from 'axios';
import React, { useState } from 'react';
import { useTranslation } from 'react-i18next';
import { Link, useHistory } from 'react-router-dom';
@ -22,7 +21,6 @@ import {
getEditIngestionPath,
getLogsViewerPath,
} from '../../../../utils/RouterUtils';
import { showErrorToast, showSuccessToast } from '../../../../utils/ToastUtils';
import Loader from '../../../common/Loader/Loader';
import KillIngestionModal from '../../../Modals/KillIngestionPipelineModal/KillIngestionPipelineModal';
import { PipelineActionsProps } from './PipelineActions.interface';
@ -59,16 +57,11 @@ function PipelineActions({
await triggerIngestion(id, displayName);
setCurrTriggerId({ id, state: 'success' });
showSuccessToast(t('message.pipeline-trigger-success-message'));
setTimeout(() => {
setCurrTriggerId({ id: '', state: '' });
}, 1500);
} catch (error) {
setCurrTriggerId({ id: '', state: '' });
showErrorToast(
error as AxiosError,
t('message.pipeline-trigger-failed-message')
);
}
};

View File

@ -321,6 +321,7 @@ const ServiceDetailsPage: FunctionComponent = () => {
async (id: string, displayName: string) => {
try {
const data = await triggerIngestionPipelineById(id);
showSuccessToast(t('message.pipeline-trigger-success-message'));
updateCurrentSelectedIngestion(id, data, 'pipelineStatuses');
} catch (err) {