-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix flink versioning issues #31168
Fix flink versioning issues #31168
Changes from all commits
ad93a62
55d2ef8
2a9bf30
d26d8d4
1e98d6c
7847077
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1591,7 +1591,7 @@ def _add_argparse_args(cls, parser): | |
class FlinkRunnerOptions(PipelineOptions): | ||
|
||
# These should stay in sync with gradle.properties. | ||
PUBLISHED_FLINK_VERSIONS = ['1.12', '1.13', '1.14', '1.15', '1.16'] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. note - this would essentially prevent python user using flink 1.17 for Beam 2.56.0, and not prevent user choosing 1.12,1.13. Consider update the known issue. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, I sorta mentioned this, but I updated to be clearer/more explicit. Thanks |
||
PUBLISHED_FLINK_VERSIONS = ['1.14', '1.15', '1.16', '1.17'] | ||
|
||
@classmethod | ||
def _add_argparse_args(cls, parser): | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just a side note
this is stale implies this field is not used, actually currently this action is only used in update_python_dependencies and publish_github_release_notes workflow.
Currently there is hard coded python/java versions everywhere in our GHAs. As futurre clean up we could make use of this action to have single source of version setting for actions