aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatei Zaharia <matei@eecs.berkeley.edu>2013-02-19 17:07:24 -0800
committerMatei Zaharia <matei@eecs.berkeley.edu>2013-02-19 17:07:24 -0800
commit8a992226bd6289cfc11c417e0a17edff7d4a4a87 (patch)
treef7cd62bb927ed3843ff8529841f5f51003db4bfe
parenta3e86b2b1fb20cab8fde2cf2012ad69905816b0d (diff)
parentecd137a72da189c52b92a1286b004740706bd936 (diff)
downloadspark-8a992226bd6289cfc11c417e0a17edff7d4a4a87.tar.gz
spark-8a992226bd6289cfc11c417e0a17edff7d4a4a87.tar.bz2
spark-8a992226bd6289cfc11c417e0a17edff7d4a4a87.zip
Merge pull request #484 from andyk/master
Fixes a broken link in documentation to issue tracker
-rw-r--r--docs/_config.yml1
-rw-r--r--docs/contributing-to-spark.md2
2 files changed, 2 insertions, 1 deletions
diff --git a/docs/_config.yml b/docs/_config.yml
index 2bd2eecc86..09617e4a1e 100644
--- a/docs/_config.yml
+++ b/docs/_config.yml
@@ -7,3 +7,4 @@ SPARK_VERSION: 0.7.0-SNAPSHOT
SPARK_VERSION_SHORT: 0.7.0
SCALA_VERSION: 2.9.2
MESOS_VERSION: 0.9.0-incubating
+SPARK_ISSUE_TRACKER_URL: https://spark-project.atlassian.net
diff --git a/docs/contributing-to-spark.md b/docs/contributing-to-spark.md
index 14d0dc856b..50feeb2d6c 100644
--- a/docs/contributing-to-spark.md
+++ b/docs/contributing-to-spark.md
@@ -15,7 +15,7 @@ The Spark team welcomes contributions in the form of GitHub pull requests. Here
But first, make sure that you have [configured a spark-env.sh](configuration.html) with at least
`SCALA_HOME`, as some of the tests try to spawn subprocesses using this.
- Add new unit tests for your code. We use [ScalaTest](http://www.scalatest.org/) for testing. Just add a new Suite in `core/src/test`, or methods to an existing Suite.
-- If you'd like to report a bug but don't have time to fix it, you can still post it to our [issue tracker](https://spark-project.atlassian.net), or email the [mailing list](http://www.spark-project.org/mailing-lists.html).
+- If you'd like to report a bug but don't have time to fix it, you can still post it to our [issue tracker]({{site.SPARK_ISSUE_TRACKER_URL}}), or email the [mailing list](http://www.spark-project.org/mailing-lists.html).
# Licensing of Contributions