You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@samza.apache.org by cr...@apache.org on 2014/03/22 21:59:07 UTC

git commit: SAMZA-201; close store in test key value stores.

Repository: incubator-samza
Updated Branches:
  refs/heads/master decfa3ab5 -> 8cd3ff12d


SAMZA-201; close store in test key value stores.


Project: http://git-wip-us.apache.org/repos/asf/incubator-samza/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-samza/commit/8cd3ff12
Tree: http://git-wip-us.apache.org/repos/asf/incubator-samza/tree/8cd3ff12
Diff: http://git-wip-us.apache.org/repos/asf/incubator-samza/diff/8cd3ff12

Branch: refs/heads/master
Commit: 8cd3ff12d12da31aba454cd7881d7bbaa3a3a881
Parents: decfa3a
Author: Chris Riccomini <cr...@criccomi-mn.linkedin.biz>
Authored: Sat Mar 22 13:55:40 2014 -0700
Committer: Chris Riccomini <cr...@criccomi-mn.linkedin.biz>
Committed: Sat Mar 22 13:55:40 2014 -0700

----------------------------------------------------------------------
 .../test/scala/org/apache/samza/storage/kv/TestKeyValueStores.scala | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-samza/blob/8cd3ff12/samza-kv/src/test/scala/org/apache/samza/storage/kv/TestKeyValueStores.scala
----------------------------------------------------------------------
diff --git a/samza-kv/src/test/scala/org/apache/samza/storage/kv/TestKeyValueStores.scala b/samza-kv/src/test/scala/org/apache/samza/storage/kv/TestKeyValueStores.scala
index 163f68e..85ba11a 100644
--- a/samza-kv/src/test/scala/org/apache/samza/storage/kv/TestKeyValueStores.scala
+++ b/samza-kv/src/test/scala/org/apache/samza/storage/kv/TestKeyValueStores.scala
@@ -74,6 +74,7 @@ class TestKeyValueStores(typeOfStore: String) {
 
   @After
   def teardown() {
+    store.close
     for (file <- dir.listFiles)
       file.delete()
     dir.delete()