Skip to content

Commit

Permalink
Add public setter for outputSets of step "RunEmrJob" to allow compile…
Browse files Browse the repository at this point in the history
…rs to set the expected output paths of the EMR job from outside

Signed-off-by: Benjamin Rögner <[email protected]>
  • Loading branch information
roegi committed Dec 13, 2024
1 parent 2a06771 commit 90117a5
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
import java.util.List;
import java.util.Map;
import java.util.UUID;

import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

Expand Down Expand Up @@ -356,4 +355,8 @@ public LambdaBasedStep.AsyncExecutionState getExecutionState() throws LambdaBase
public LambdaBasedStep.ExecutionMode getExecutionMode() {
return SYNC;
}

public void setOutputSets(List<OutputSet> outputSets) {
this.outputSets = outputSets;
}
}

0 comments on commit 90117a5

Please sign in to comment.