Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Loskutov2019-01-21 21:18:38 +0000
committerAndrey Loskutov2019-01-21 21:18:38 +0000
commit57aef1646fef9009290374dec1cc83d8db9e8e0b (patch)
treec4fd8a121a8c891fc88f21a0b4fee711c471cf7b /org.eclipse.search/pom.xml
parent4b4ffed479c0cab62f623a53a076d117e03b0e03 (diff)
downloadeclipse.platform.text-57aef1646fef9009290374dec1cc83d8db9e8e0b.tar.gz
eclipse.platform.text-57aef1646fef9009290374dec1cc83d8db9e8e0b.tar.xz
eclipse.platform.text-57aef1646fef9009290374dec1cc83d8db9e8e0b.zip
seedJobsCount over 1 on a JobGroup can cause endless waits, see bug 543629 comment 2 and bug 543660. Therefore use 1 for seedJobsCount in TextSearchVisitor.search() to avoid jobGroup.join(0) call block forever if we schedule more jobs as seedJobsCount and all jobs <= seedJobsCount finish before jobs > seedJobsCount start. Change-Id: Ib57687c8389bb8a620e1f4e7c82c52c6cd219b46 Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
Diffstat (limited to 'org.eclipse.search/pom.xml')
-rw-r--r--org.eclipse.search/pom.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.search/pom.xml b/org.eclipse.search/pom.xml
index 76ae3cefeb6..65b6cc0659f 100644
--- a/org.eclipse.search/pom.xml
+++ b/org.eclipse.search/pom.xml
@@ -5,7 +5,7 @@
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/org/documents/edl-v10.php
-
+
Contributors:
Igor Fedorenko - initial implementation
-->
@@ -18,6 +18,6 @@
</parent>
<groupId>org.eclipse.search</groupId>
<artifactId>org.eclipse.search</artifactId>
- <version>3.11.400-SNAPSHOT</version>
+ <version>3.11.500-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>

Back to the top