You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
impl.logger.Errorw("error in creating script and mapping for inline step", "err", err, "inlineStepDetail", inlineStepDetail)
680
681
returnerr
681
682
}
683
+
682
684
inlineStep:=&repository.PipelineStageStep{
683
685
PipelineStageId: stageId,
684
686
Name: step.Name,
685
687
Description: step.Description,
686
688
Index: step.Index,
687
689
StepType: step.StepType,
688
690
ScriptId: scriptEntryId,
689
-
OutputDirectoryPath: step.OutputDirectoryPath,
691
+
OutputDirectoryPath: helper.FilterReservedPathFromOutputDirPath(step.OutputDirectoryPath), // TODO: silently filtering reserved paths, not throwing error as of now since this flow is not in tx
0 commit comments