File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
opengrok-indexer/src/main/java/org/opengrok/indexer/history Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,8 @@ public class MercurialRepository extends RepositoryWithPerPartesHistory {
57
57
58
58
private static final long serialVersionUID = 1L ;
59
59
60
+ public static final int MAX_CHANGESETS = 256 ;
61
+
60
62
/**
61
63
* The property name used to obtain the client command for this repository.
62
64
*/
@@ -145,6 +147,10 @@ String determineBranch(CommandTimeoutType cmdType) throws IOException {
145
147
return executor .getOutputString ().trim ();
146
148
}
147
149
150
+ public int getPerPartesCount () {
151
+ return MAX_CHANGESETS ;
152
+ }
153
+
148
154
private String getRevisionNum (String changeset ) throws HistoryException {
149
155
String [] parts = changeset .split (":" );
150
156
if (parts .length == 2 ) {
You can’t perform that action at this time.
0 commit comments