mirror of https://github.com/apache/jclouds.git
Fixed bug in extension module option parsing
This commit is contained in:
parent
9b6dbd59ed
commit
53bac3fa65
|
@ -40,7 +40,7 @@ Options can also be specified for extension modules
|
||||||
(let [context
|
(let [context
|
||||||
(.createContext
|
(.createContext
|
||||||
(BlobStoreContextFactory.) service account key
|
(BlobStoreContextFactory.) service account key
|
||||||
(apply modules (filter #(not #{:sync :async} %) options)))]
|
(apply modules (filter #(not (#{:sync :async} %)) options)))]
|
||||||
(if (some #(= :async %) options)
|
(if (some #(= :async %) options)
|
||||||
(.getAsyncBlobStore context)
|
(.getAsyncBlobStore context)
|
||||||
(.getBlobStore context))))
|
(.getBlobStore context))))
|
||||||
|
|
Loading…
Reference in New Issue