aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2018-05-22 16:21:51 -0700
committerBryan Newbold <bnewbold@archive.org>2018-05-24 00:02:36 -0700
commit58447ff883db0331bfd2450b8607ba332f53b3b6 (patch)
treee469f563455f270b3f62b3e5e0aab0f142139ac7
parent266c42f4de6e5e539d6443cc5eef4eb61fa98a1a (diff)
downloadsandcrawler-58447ff883db0331bfd2450b8607ba332f53b3b6.tar.gz
sandcrawler-58447ff883db0331bfd2450b8607ba332f53b3b6.zip
get quorum fields to match, fixing test
Writing this commit message in anger: It seems that the HBaseSource must match exactly between the instantiated Job class and the JobTest. The error when this isn't the case is very obscure: a `None.get()` exception deep in SpyGlass internals. Blech. This may or may not explain other test failure issues.
-rw-r--r--scald-mvp/src/test/scala/example/SimpleHBaseSourceExampleTest.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/scald-mvp/src/test/scala/example/SimpleHBaseSourceExampleTest.scala b/scald-mvp/src/test/scala/example/SimpleHBaseSourceExampleTest.scala
index 41c297d..cf068c1 100644
--- a/scald-mvp/src/test/scala/example/SimpleHBaseSourceExampleTest.scala
+++ b/scald-mvp/src/test/scala/example/SimpleHBaseSourceExampleTest.scala
@@ -37,7 +37,7 @@ class SimpleHBaseSourceExampleTest extends FunSpec with TupleConversions {
.source[Tuple](
new HBaseSource(
"table_name",
- "quorum_name:2181",
+ "mtrcs-zk1.us.archive.org:2181",
new Fields("key"),
List("column_family"),
List(new Fields("column_name1", "column_name2")),