Skip to content

Commit

Permalink
fixes issue in forecastdiff (mongodb keys containing dot characters)
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Biasuzzi committed Feb 7, 2017
1 parent a1affa8 commit 7e0b584
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions histoDB/histodb-dataserver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@
<dependency>
<groupId>eu.itesla_project</groupId>
<artifactId>cim1-import</artifactId>
<version>0.1-SNAPSHOT</version>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,9 @@ else if (lastSnapShotsMatches) {
log.warn("Failed to evaluate expression "+((FunctionalColumn)key).getExpression(), e);
value = null;
}
} else
value = obj.get(key.getName());
} else {
value = bindings.get(key.getName());
}
result.add(value);
}
else {
Expand Down

0 comments on commit 7e0b584

Please sign in to comment.