Fixed bug in extension module option parsing

This commit is contained in:
Hugo Duncan 2010-03-24 17:33:01 -04:00
parent 9b6dbd59ed
commit 53bac3fa65
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ Options can also be specified for extension modules
(let [context
(.createContext
(BlobStoreContextFactory.) service account key
(apply modules (filter #(not #{:sync :async} %) options)))]
(apply modules (filter #(not (#{:sync :async} %)) options)))]
(if (some #(= :async %) options)
(.getAsyncBlobStore context)
(.getBlobStore context))))