Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Honnix <[email protected]>
  • Loading branch information
andresgomezfrr and honnix authored Feb 2, 2024
1 parent 4710e3f commit db286e1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public abstract class ProjectClosure {

public abstract Map<LaunchPlanIdentifier, LaunchPlan> launchPlans();

private static final Escaper escaper = Escapers.builder().addEscape('$', "\\$").build();
private static final Escaper ESCAPER = Escapers.builder().addEscape('$', "\\$").build();

ProjectClosure applyCustom(JFlyteCustom custom) {
Map<TaskIdentifier, TaskSpec> rewrittenTaskSpecs =
Expand Down Expand Up @@ -487,7 +487,7 @@ static TaskTemplate createTaskTemplateForRunnableTask(RunnableTask task, String
"jflyte",
"execute",
"--task",
escaper.escape(task.getName()),
ESCAPER.escape(task.getName()),
"--inputs",
"{{.input}}",
"--outputPrefix",
Expand Down

0 comments on commit db286e1

Please sign in to comment.