h2o-test: use unique session id strings closes to avoid jenkins test failures closes apache/mahout#119
Project: http://git-wip-us.apache.org/repos/asf/mahout/repo Commit: http://git-wip-us.apache.org/repos/asf/mahout/commit/435dd49e Tree: http://git-wip-us.apache.org/repos/asf/mahout/tree/435dd49e Diff: http://git-wip-us.apache.org/repos/asf/mahout/diff/435dd49e Branch: refs/heads/mahout-0.10.x Commit: 435dd49eb2ff7f02461987e4e69dcbddecf9da9a Parents: 3e39210 Author: Andrew Palumbo <[email protected]> Authored: Fri Apr 17 16:04:43 2015 -0400 Committer: Andrew Palumbo <[email protected]> Committed: Fri Apr 17 16:04:43 2015 -0400 ---------------------------------------------------------------------- .../org/apache/mahout/h2obindings/test/DistributedH2OSuite.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mahout/blob/435dd49e/h2o/src/test/scala/org/apache/mahout/h2obindings/test/DistributedH2OSuite.scala ---------------------------------------------------------------------- diff --git a/h2o/src/test/scala/org/apache/mahout/h2obindings/test/DistributedH2OSuite.scala b/h2o/src/test/scala/org/apache/mahout/h2obindings/test/DistributedH2OSuite.scala index 45c77a5..abb4289 100644 --- a/h2o/src/test/scala/org/apache/mahout/h2obindings/test/DistributedH2OSuite.scala +++ b/h2o/src/test/scala/org/apache/mahout/h2obindings/test/DistributedH2OSuite.scala @@ -30,7 +30,7 @@ trait DistributedH2OSuite extends DistributedMahoutSuite with LoggerConfiguratio override protected def beforeEach() { super.beforeEach() - mahoutCtx = mahoutH2OContext("mah2out") + mahoutCtx = mahoutH2OContext("mah2out" + System.currentTimeMillis()) } override protected def afterEach() {
