Skip to content

Commit

Permalink
fix: fix bigtable max age calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
khorshuheng committed Oct 4, 2023
1 parent 55a8fa7 commit a64e5d4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public List<List<Feature>> convertRowToFeature(
value,
localFeatureReferences,
reusedDecoder,
rowCell.getTimestamp());
rowCell.getTimestamp() / 1000);
} catch (IOException e) {
throw new RuntimeException("Failed to decode features from BigTable");
}
Expand Down

0 comments on commit a64e5d4

Please sign in to comment.