diff options
author | James Moger <james.moger@gitblit.com> | 2012-10-28 13:27:26 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2012-10-28 13:27:26 -0400 |
commit | e92c6d230b3a350749fdb9fa2150bb1773260b8c (patch) | |
tree | 135b01ea4c8174f5e79725dd2b99d72b01cc50f1 /src/com/gitblit/models | |
parent | 5b831a0981491cabbbdbb02dba237308947a5e7d (diff) | |
download | gitblit-e92c6d230b3a350749fdb9fa2150bb1773260b8c.tar.gz gitblit-e92c6d230b3a350749fdb9fa2150bb1773260b8c.zip |
Experimental JGit-based GC Executor
Diffstat (limited to 'src/com/gitblit/models')
-rw-r--r-- | src/com/gitblit/models/RepositoryModel.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/com/gitblit/models/RepositoryModel.java b/src/com/gitblit/models/RepositoryModel.java index 502f886e..23ce9e3b 100644 --- a/src/com/gitblit/models/RepositoryModel.java +++ b/src/com/gitblit/models/RepositoryModel.java @@ -76,6 +76,11 @@ public class RepositoryModel implements Serializable, Comparable<RepositoryModel public Set<String> forks;
public String originRepository;
public boolean verifyCommitter;
+ public String gcThreshold;
+ public String gcPeriod;
+
+ public transient boolean isCollectingGarbage;
+ public Date lastGC;
public RepositoryModel() {
this("", "", "", new Date(0));
|