Skip to content

Commit

Permalink
[HOPSWORKS-3125] [append] Feature view fix end time error #944
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethmhc committed May 17, 2022
1 parent af28c64 commit 3c064ff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ public Query constructBatchQuery(FeatureView featureView, Project project, Users
Long endTimestamp, Boolean withLabel, Boolean isHiveEngine)
throws FeaturestoreException {
Date startTime = startTimestamp == null ? null : new Date(startTimestamp);
Date endTime = startTimestamp == null ? null : new Date(endTimestamp);
Date endTime = endTimestamp == null ? null : new Date(endTimestamp);
return constructBatchQuery(featureView, project, user, startTime, endTime, withLabel, isHiveEngine);
}

Expand Down

0 comments on commit 3c064ff

Please sign in to comment.