Skip to content

Commit

Permalink
Rename magic template variable to
Browse files Browse the repository at this point in the history
  • Loading branch information
ryannedolan committed Jul 21, 2023
1 parent 5853fc4 commit b55dc03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
job:
entryClass: com.linkedin.hoptimator.flink.runner.FlinkRunner
args:
- {{sql}}
- {{pipeline.sql}}
jarURI: local:///opt/hoptimator-flink-runner.jar
parallelism: {{flink.parallelism:1}}
upgradeMode: stateless
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ public class SqlJob extends Resource {

public SqlJob(String sql) {
super("SqlJob");
export("sql", sql);
export("pipeline.sql", sql);
}
}

0 comments on commit b55dc03

Please sign in to comment.