-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Need to properly handle null for blob container names #83
Comments
I think this should be fixed with unit test(s). root container is an important scenario to support. |
null value should go to root (same as empty string) |
It depends on the method, for create container, it doesn't make sense to send the create container request because the root container is already there. |
I think that |
also for delete container, if we do not curb the request on client side, an incorrect delete container may delete the whole account in future. |
fix ready. |
actually, no, it is more complicated than it looks like. http://msdn.microsoft.com/en-us/library/windowsazure/ee395424.aspx |
To list the blobs in the root container: To delete the root container: Missed from documentation, I guess creating a root container should be PUT http://myaccount.blob.core.windows.net/$root?restype=container |
actually, if we always specify the root container as $root, the amount code change seems to be minimum. |
convert to dev style java doc for writeable blob container contract.
convert to dev style java doc for writeable blob container contract.
Remove setting inferred tier when listing
Renaming ReceiveBySequenceNumberAsync to ReceiveDeferredMessageAsync as it makes the scenario clear.
Moderakh/v2.4.0 release
* Add tests for merge action * Implement and use mergeDocument, mergeOrUploadDocument operations * Refactor merge related test methods to call client.mergeDocument * Re-run test records
When
null
is passed as the container name in the Blob service APIs, it maps to the container named"null"
, which is not the intended behavior. It should throw an exception, or interpret null as the root container (which would be consistent with passing the empty string, see issue #82).The text was updated successfully, but these errors were encountered: