comparison mercurial-server/src/jetbrains/buildServer/buildTriggers/vcs/mercurial/ServerPluginConfig.java @ 571:c3ec73ac68ca

Drop option teamcity.hg.use.revsets.root.ids. It was introduced for enabling revsets only for some roots, because revsets were suspected of being slow. Turns out slow part is getting changed files from commit, so this option is not needed anymore.
author Dmitry Neverov <dmitry.neverov@jetbrains.com>
date Mon, 18 Mar 2013 17:43:31 +0400
parents a7719626703d
children 40c085517770
comparison
equal deleted inserted replaced
570:57b85306c377 571:c3ec73ac68ca
1 package jetbrains.buildServer.buildTriggers.vcs.mercurial; 1 package jetbrains.buildServer.buildTriggers.vcs.mercurial;
2 2
3 import org.jetbrains.annotations.NotNull;
4 import org.jetbrains.annotations.Nullable; 3 import org.jetbrains.annotations.Nullable;
5 4
6 import java.util.Set; 5 import java.util.Set;
7 6
8 /** 7 /**
17 16
18 int getPullTimeout(); 17 int getPullTimeout();
19 18
20 public boolean dontUseRevsets(); 19 public boolean dontUseRevsets();
21 20
22 @NotNull
23 Set<Long> getRevsetParentRootIds();
24
25 public boolean detectSubrepoChanges(); 21 public boolean detectSubrepoChanges();
26 22
27 public boolean bookmarksEnabled(); 23 public boolean bookmarksEnabled();
28 24
29 public int getMaxDagNodesCount(); 25 public int getMaxDagNodesCount();