Skip to content

Commit

Permalink
NIFI-11746 Corrected unpackPythonExtensions reference in InstanceConf…
Browse files Browse the repository at this point in the history
…iguration

Signed-off-by: David Handermann <exceptionfactory@apache.org>
  • Loading branch information
exceptionfactory committed Jun 23, 2023
1 parent ad0d2cc commit 5a378a5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,14 @@ public boolean equals(final Object other) {
}

final InstanceConfiguration that = (InstanceConfiguration) other;
return autoStart == that.autoStart && unpackPythonExtensions == that.unpackPythonExtensions && Objects.equals(bootstrapConfigFile, that.bootstrapConfigFile)
return autoStart == that.autoStart && Objects.equals(bootstrapConfigFile, that.bootstrapConfigFile)
&& Objects.equals(instanceDirectory, that.instanceDirectory) && Objects.equals(flowXmlGz, that.flowXmlGz)
&& Objects.equals(stateDirectory, that.stateDirectory) && Objects.equals(nifiPropertiesOverrides, that.nifiPropertiesOverrides);
}

@Override
public int hashCode() {
return Objects.hash(bootstrapConfigFile, instanceDirectory, flowXmlGz, stateDirectory, autoStart, nifiPropertiesOverrides, unpackPythonExtensions);
return Objects.hash(bootstrapConfigFile, instanceDirectory, flowXmlGz, stateDirectory, autoStart, nifiPropertiesOverrides);
}

public static class Builder {
Expand Down

0 comments on commit 5a378a5

Please sign in to comment.