mirror of https://github.com/apache/jclouds.git
tuning so that we can reliably test multiple page lists in clj
This commit is contained in:
parent
c0a261334b
commit
ab8a7e452c
|
@ -24,6 +24,6 @@ import java.util.concurrent.TimeUnit;
|
||||||
import org.jclouds.blobstore.BlobStore;
|
import org.jclouds.blobstore.BlobStore;
|
||||||
import org.jclouds.concurrent.Timeout;
|
import org.jclouds.concurrent.Timeout;
|
||||||
|
|
||||||
@Timeout(duration = 30, timeUnit = TimeUnit.SECONDS) interface TransientBlobStore extends BlobStore {
|
@Timeout(duration = 2, timeUnit = TimeUnit.MINUTES) interface TransientBlobStore extends BlobStore {
|
||||||
|
|
||||||
}
|
}
|
|
@ -79,7 +79,7 @@
|
||||||
|
|
||||||
(deftest large-container-list-test
|
(deftest large-container-list-test
|
||||||
(let [container-name "test"
|
(let [container-name "test"
|
||||||
total-blobs 10000]
|
total-blobs 5000]
|
||||||
|
|
||||||
;; create a container full of blobs
|
;; create a container full of blobs
|
||||||
(create-container container-name)
|
(create-container container-name)
|
||||||
|
|
|
@ -267,7 +267,7 @@
|
||||||
<testSourceDirectories>
|
<testSourceDirectories>
|
||||||
<testSourceDirectory>src/test/clojure</testSourceDirectory>
|
<testSourceDirectory>src/test/clojure</testSourceDirectory>
|
||||||
</testSourceDirectories>
|
</testSourceDirectories>
|
||||||
<clojureOptions>-Xmx512m -Djava.awt.headless=true -XX:MaxPermSize=256m -Xss256k</clojureOptions>
|
<clojureOptions>-Xms128m -Xmx512m -Djava.awt.headless=true -XX:MaxPermSize=256m -Xss256k</clojureOptions>
|
||||||
<warnOnReflection>true</warnOnReflection>
|
<warnOnReflection>true</warnOnReflection>
|
||||||
<compileDeclaredNamespaceOnly>true</compileDeclaredNamespaceOnly>
|
<compileDeclaredNamespaceOnly>true</compileDeclaredNamespaceOnly>
|
||||||
<testDeclaredNamespaceOnly>false</testDeclaredNamespaceOnly>
|
<testDeclaredNamespaceOnly>false</testDeclaredNamespaceOnly>
|
||||||
|
|
Loading…
Reference in New Issue