Skip to content

Commit

Permalink
hotfix cannot modify pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
DLT1412 committed Nov 7, 2023
1 parent 7f523b5 commit 4978f97
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
* limitations under the License.
*/

import { Form, Input, Typography } from 'antd';
import { Typography } from 'antd';
import IngestionWorkflowForm from 'components/IngestionWorkflowForm/IngestionWorkflowForm';
import { LOADING_STATE } from 'enums/common.enum';
import { isEmpty, isUndefined, omit, trim } from 'lodash';
import React, { useMemo, useState } from 'react';
import { useTranslation } from 'react-i18next';
Expand Down Expand Up @@ -193,7 +195,7 @@ const AddIngestion = ({
scheduleInterval: isEmpty(scheduleInterval)
? undefined
: scheduleInterval,
retries: extraData.retries,
// retries: extraData.retries,
},
loggerLevel: workflowData?.enableDebugLog
? LogLevels.Debug
Expand Down

0 comments on commit 4978f97

Please sign in to comment.