Fix runnable-on-service profile in the Spark runner.
Project: http://git-wip-us.apache.org/repos/asf/beam/repo Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/c08e7d86 Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/c08e7d86 Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/c08e7d86 Branch: refs/heads/master Commit: c08e7d86dd289640361e25a68ba7eb827938473e Parents: 82d754c Author: Sela <[email protected]> Authored: Tue Feb 21 16:57:18 2017 +0200 Committer: Sela <[email protected]> Committed: Wed Mar 1 00:18:05 2017 +0200 ---------------------------------------------------------------------- runners/spark/pom.xml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/beam/blob/c08e7d86/runners/spark/pom.xml ---------------------------------------------------------------------- diff --git a/runners/spark/pom.xml b/runners/spark/pom.xml index 3ef7ef4..1669833 100644 --- a/runners/spark/pom.xml +++ b/runners/spark/pom.xml @@ -57,7 +57,7 @@ <profile> <!-- This profile adds execution of RunnableOnService integration tests against a local Spark endpoint. --> - <id>local-runnable-on-service-tests</id> + <id>runnable-on-service-tests</id> <activation><activeByDefault>false</activeByDefault></activation> <build> <plugins> @@ -79,6 +79,8 @@ org.apache.beam.sdk.testing.UsesSplittableParDo, org.apache.beam.sdk.testing.UsesCommittedMetrics </excludedGroups> + <parallel>none</parallel> + <threadCount>4</threadCount> <forkCount>1</forkCount> <reuseForks>false</reuseForks> <failIfNoTests>true</failIfNoTests>
