Skip to content

Commit

Permalink
Merge pull request #38 from Jochen-A-Fuerbacher/hotfixEqualsInMongoDb…
Browse files Browse the repository at this point in the history
…KnowledgeBase

[JENKINS-30643] Hotfix for MongoDB statistics configuration.
  • Loading branch information
rsandell committed Sep 25, 2015
2 parents ef95fae + 3025a8f commit 3295e3e
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -411,7 +411,8 @@ public boolean equals(KnowledgeBase oldKnowledgeBase) {
&& equals(oldMongoDBKnowledgeBase.getDbName(), dbName)
&& equals(oldMongoDBKnowledgeBase.getUserName(), userName)
&& equals(oldMongoDBKnowledgeBase.getPassword(), password)
&& this.enableStatistics == oldMongoDBKnowledgeBase.enableStatistics;
&& this.enableStatistics == oldMongoDBKnowledgeBase.enableStatistics
&& this.successfulLogging == oldMongoDBKnowledgeBase.successfulLogging;
} else {
return false;
}
Expand Down

0 comments on commit 3295e3e

Please sign in to comment.