Russell Klopfer created JCLOUDS-1411:
----------------------------------------
Summary: StorageType not maintained by filesystem BlobStore
Key: JCLOUDS-1411
URL: https://issues.apache.org/jira/browse/JCLOUDS-1411
Project: jclouds
Issue Type: Bug
Components: jclouds-blobstore
Affects Versions: 2.0.3, 2.1.0, 2.0.0
Environment: Windows7
Reporter: Russell Klopfer
The directory related methods on BlobStore are deprecated, so I am trying to
update to the new directory-less scheme. However, when I do the following,
{code:java}
Blob dirBlob =
blobStore.blobBuilder("some/path/").type(StorageType.FOLDER).build();
blobStore.putBlob(containerName, dirBlob);
BlobMetadata fetchedMeta = blobStore.blobMetadata(containterName, "some/path/");
StorageType fetchedType = fetchedMeta.getType();{code}
{{fetchedType}} (BLOB) does not match the type on {{dirBlob (FOLDER)}}.
One place this causes problems is when these directories appear as normal blobs
when doing a B{{lobStore.list()}}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)