Skip to content

Commit

Permalink
Minor: update testSuite pipeline name to have UUID to keep unique name (
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaileshParmar11 authored May 16, 2024
1 parent c24b4e0 commit 807bb0b
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ import {
Transi18next,
} from '../../../utils/CommonUtils';
import { getIngestionName } from '../../../utils/ServiceUtils';
import { generateUUID } from '../../../utils/StringsUtils';
import { showErrorToast } from '../../../utils/ToastUtils';
import SuccessScreen from '../../common/SuccessScreen/SuccessScreen';
import DeployIngestionLoaderModal from '../../Modals/DeployIngestionLoaderModal/DeployIngestionLoaderModal';
Expand Down Expand Up @@ -146,7 +147,8 @@ const TestSuiteIngestion: React.FC<TestSuiteIngestionProps> = ({
? undefined
: data.repeatFrequency,
},
name: updatedName,
displayName: updatedName,
name: generateUUID(),
loggerLevel: data.enableDebugLog ? LogLevels.Debug : LogLevels.Info,
pipelineType: PipelineType.TestSuite,
service: {
Expand Down

0 comments on commit 807bb0b

Please sign in to comment.