-
Notifications
You must be signed in to change notification settings - Fork 68
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
[issue-730] Upgrade to flink 1.18.1 #731
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #731 +/- ##
============================================
+ Coverage 81.12% 81.23% +0.11%
- Complexity 573 574 +1
============================================
Files 62 62
Lines 2723 2723
Branches 232 232
============================================
+ Hits 2209 2212 +3
+ Misses 326 324 -2
+ Partials 188 187 -1 ☔ View full report in Codecov by Sentry. |
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.
Please add some reference Flink tickets of your code changes with your PR description, so that we can keep track, like FLINK-32376 and FLINK-31972
@@ -135,7 +135,7 @@ public void testCreateCatalogFromFactory() { | |||
assertThat(actualCatalog instanceof PravegaCatalog).isTrue(); | |||
assertThat(((PravegaCatalog) actualCatalog).getName()).isEqualTo(CATALOG.getName()); | |||
assertThat(((PravegaCatalog) actualCatalog).getDefaultDatabase()).isEqualTo(CATALOG.getDefaultDatabase()); | |||
assertThat(Whitebox.getInternalState(actualCatalog, "properties")) | |||
org.assertj.core.api.Assertions.assertThat((Map) Whitebox.getInternalState(actualCatalog, "properties")) |
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.
We can use assertThat
directly
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.
Hi Brian, the issue has been handled.
@@ -146,6 +148,21 @@ private static class SinkInitContext implements Sink.InitContext { | |||
SinkInitContext( | |||
SinkWriterMetricGroup metricGroup) { | |||
this.metricGroup = metricGroup; | |||
} |
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.
Indentation not correct here.
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.
Hi Brian, The indentation has been fixed.
Hi @crazyzhou , I have made changes and added the references in the description. |
Signed-off-by: root <[email protected]>
Signed-off-by: root <[email protected]>
Signed-off-by: root <[email protected]>
Signed-off-by: root <[email protected]>
Signed-off-by: root <[email protected]>
Signed-off-by: root <[email protected]>
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.
LGTM
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.
LGTM
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.
LGTM
Change log description
assertThat
Purpose of the change
Fix: #730
What the code does
Upgrade flinkVersion to 1.18.1 in gradle.properties
How to verify it
./gradlew clean build should pass