Skip to content
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

[FLINK-7197] [gelly] Missing call to GraphAlgorithmWrappingBase#canMergeConfigurationWith() #4345

Conversation

greghogan
Copy link
Contributor

Fix for methods calling the incorrect super function.

…rgeConfigurationWith()

Fix for methods calling the incorrect super function.
@@ -56,7 +56,9 @@ public TranslateGraphIds(TranslateFunction<OLD, NEW> translator) {

@Override
protected boolean canMergeConfigurationWith(GraphAlgorithmWrappingBase other) {
super.mergeConfiguration(other);
if (!super.canMergeConfigurationWith(other)) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

mergeConfiguration() wouldn't be called this way.
Is that intended ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It can use the default implementation from GraphAlgorithmWrappingBase.

@greghogan
Copy link
Contributor Author

@tedyu does this look right to you now?

@tedyu
Copy link
Contributor

tedyu commented Jul 19, 2017

Fine by me.

@zentol
Copy link
Contributor

zentol commented Jul 19, 2017

merging.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
4 participants