Skip to content

Commit

Permalink
[FSTORE-1062] Materialisation job does not work with new Hopsworks sc… (
Browse files Browse the repository at this point in the history
  • Loading branch information
SirOibaf committed Nov 1, 2023
1 parent 286c644 commit d0a43b6
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,14 @@ public static void main(String[] args) throws Exception {
.hasArg()
.build());

// This option here is used, however it's here to make the deltastreamer job
// working with the Hopsworks scheduler which adds the `start_time` option
options.addOption(Option.builder("start_time")
.argName("start_time")
.required(false)
.hasArg()
.build());

CommandLineParser parser = new DefaultParser();
CommandLine commandLine = parser.parse(options, args);

Expand Down

0 comments on commit d0a43b6

Please sign in to comment.