> @@ -39,7 +39,10 @@
> protected void configure() {
> bind(BlobStore.class).to(LocalBlobStore.class);
> install(new BlobStoreObjectModule());
> - bind(ConsistencyModel.class).toInstance(ConsistencyModel.STRICT);
> + if (System.getProperty("os.name", "").toLowerCase().contains("windows"))
> + bind(ConsistencyModel.class).toInstance(ConsistencyModel.EVENTUAL);
I wouldn't call a local file system eventually consistent!
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/871/files#r43062294
|