File tree 2 files changed +3
-3
lines changed
fluss-lakehouse/fluss-lakehouse-cli/src/main/java/com/alibaba/fluss/lakehouse/cli
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 33
33
* PackagedProgram)} to respect the configuration key {@link PipelineOptions#JARS} so that the
34
34
* additional jar needed to run lakehouse tiering service can be submitted to fluss cluster as well.
35
35
*/
36
- public class FlussCliFronted extends CliFrontend {
36
+ public class FlussCliFrontend extends CliFrontend {
37
37
38
38
// the origin flink configuration before method #executeProgram
39
39
private final Configuration originConfiguration ;
40
40
41
- public FlussCliFronted (
41
+ public FlussCliFrontend (
42
42
Configuration configuration , List <CustomCommandLine > customCommandLines ) {
43
43
super (configuration , customCommandLines );
44
44
this .originConfiguration = configuration ;
Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ private static int run(
130
130
List <CustomCommandLine > customCommandLines = new ArrayList <>();
131
131
customCommandLines .add (new DefaultCLI ());
132
132
133
- CliFrontend cliFrontend = new FlussCliFronted (flinkConfig , customCommandLines );
133
+ CliFrontend cliFrontend = new FlussCliFrontend (flinkConfig , customCommandLines );
134
134
// let's combine fluss config and lake config as arguments
135
135
List <String > arguments =
136
136
new ArrayList <>(
You can’t perform that action at this time.
0 commit comments