Yingyi Bu has submitted this change and it was merged. Change subject: Fix the temporary dataset life time threshold. ......................................................................
Fix the temporary dataset life time threshold. Change-Id: I076c085d4decfa23ab7413e85fe60458dd96d058 Reviewed-on: https://asterix-gerrit.ics.uci.edu/339 Tested-by: Jenkins <[email protected]> Reviewed-by: Ian Maxon <[email protected]> --- M asterix-metadata/src/main/java/edu/uci/ics/asterix/metadata/MetadataCache.java 1 file changed, 1 insertion(+), 1 deletion(-) Approvals: Ian Maxon: Looks good to me, approved Jenkins: Verified diff --git a/asterix-metadata/src/main/java/edu/uci/ics/asterix/metadata/MetadataCache.java b/asterix-metadata/src/main/java/edu/uci/ics/asterix/metadata/MetadataCache.java index ad6a6c7..8443086 100644 --- a/asterix-metadata/src/main/java/edu/uci/ics/asterix/metadata/MetadataCache.java +++ b/asterix-metadata/src/main/java/edu/uci/ics/asterix/metadata/MetadataCache.java @@ -47,7 +47,7 @@ public class MetadataCache { // Default life time period of a temp dataset. It is 30 days. - private final static long TEMP_DATASET_INACTIVE_TIME_THRESHOLD = 3600 * 24 * 30 * 1000; + private final static long TEMP_DATASET_INACTIVE_TIME_THRESHOLD = 3600 * 24 * 30 * 1000L; // Key is dataverse name. protected final Map<String, Dataverse> dataverses = new HashMap<String, Dataverse>(); // Key is dataverse name. Key of value map is dataset name. -- To view, visit https://asterix-gerrit.ics.uci.edu/339 To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings Gerrit-MessageType: merged Gerrit-Change-Id: I076c085d4decfa23ab7413e85fe60458dd96d058 Gerrit-PatchSet: 2 Gerrit-Project: asterixdb Gerrit-Branch: master Gerrit-Owner: Yingyi Bu <[email protected]> Gerrit-Reviewer: Ian Maxon <[email protected]> Gerrit-Reviewer: Jenkins <[email protected]> Gerrit-Reviewer: Yingyi Bu <[email protected]>
