Skip to content

Commit

Permalink
Add support for Flink 1.19 runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
buddhike committed Jul 5, 2024
1 parent 3eef589 commit 19b7473
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ export class Runtime {
/** Flink Version 1.18 */
public static readonly FLINK_1_18 = Runtime.of('FLINK-1_18');

/** Flink Version 1.19 */
public static readonly FLINK_1_19 = Runtime.of('FLINK-1_19');

/** Create a new Runtime with with an arbitrary Flink version string */
public static of(value: string) {
return new Runtime(value);
Expand Down

0 comments on commit 19b7473

Please sign in to comment.