-
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
BlobContract.createPageBlob's length parameter should be long, not int #81
Milestone
Comments
Interestingly, |
After this is fixed in the service layer, this bug should be reassigned to the Storage team for fix in the client layer. |
There is already an issue tracking the seperate bug in the convenience layer: #50 |
fix ready. |
joostdenijs
pushed a commit
to joostdenijs/azure-sdk-for-java
that referenced
this issue
Jan 18, 2013
…c42cfa420160 Dev
joostdenijs
pushed a commit
to joostdenijs/azure-sdk-for-java
that referenced
this issue
Jan 18, 2013
jianghaolu
pushed a commit
to jianghaolu/azure-sdk-for-java
that referenced
this issue
Apr 5, 2017
…c42cfa420160 Dev
jianghaolu
pushed a commit
to jianghaolu/azure-sdk-for-java
that referenced
this issue
Apr 5, 2017
g2vinay
pushed a commit
to g2vinay/azure-sdk-for-java
that referenced
this issue
Mar 4, 2019
Added support for setting the standard blob tier on block blobs
mssfang
pushed a commit
to mssfang/azure-sdk-for-java
that referenced
this issue
Apr 23, 2019
…ode (Azure#81) * Fixing javadoc generation errors * Adding dependency to use SLF4J logging instead of java util logging. * More SLF4J migration * Changed all java util logging statements to slf4j. * Checking in the POM that goes with the release to maven reposisory. * Removed unused imports * Instrumented all code with SLF4J logging. * Fixing some log statements * Moving request-response link creation to message factory so we don't create multiple links to the same entity. * Updaing third party notice to include SLF4J license. * Updating distributed POM * Renaming setContent method to setBody. * Fixing a typo in log statement. * Handling the special case of 0 timeout for receives. If there are no prefetched messages, receive call returns immediately with already prefetched messages. * Correcting a log statement * Added javadoc comments for rules package. * Adding javadoc comments. Work in progress. * More javadoc comments added. * Fixing a minor bug in sender and receiver creation. Closes the messaging factory if sender or receiver creation fails. * Fixing the issue of not renewing CBS tokens. Also a concurrency fix. * Fixing a bug in session receiver to not repeatedly attempt accepting the same session on lock lost. * Added some java docs.. And changed default prefetch count, based on receive mode.
navalev
pushed a commit
to navalev/azure-sdk-for-java
that referenced
this issue
Dec 24, 2019
* Adds delete methods for index documents - Adds IndexBatchBuilder.delete(keyName, keyValues) for batch delete - Adds client.deleteDocuments(documents) - Adds tests: canDeleteBatchByKeys, indexDoesNotThrowWhenDeletingDocumentWithExtraFields, indexDoesNotThrowWhenDeletingDynamicDocumentWithExtraFields - New recordings for indexing tests
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Page blobs can be up to 1 TB, which cannot be represented with an int (which can represent a max value of 2GB). Thus, the
length
parameter should be a long, which can represent up to 9ZB (which should be enough for anyone. :-))The text was updated successfully, but these errors were encountered: