-
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
getBlobProperties throws when using failing IF_MODIFIED_SINCE access condition #77
Milestone
Comments
we should have unit test for this. |
ghost
assigned gcheng
Jul 13, 2012
fix ready! |
gcheng
pushed a commit
to gcheng/azure-sdk-for-java
that referenced
this issue
Jul 25, 2012
modified since condition is not met.
gcheng
pushed a commit
to gcheng/azure-sdk-for-java
that referenced
this issue
Jul 27, 2012
issure Azure#77, let get blob properties throws an exception when the if
joostdenijs
pushed a commit
to joostdenijs/azure-sdk-for-java
that referenced
this issue
Jan 18, 2013
…b0dd77b941ca Looks good
joostdenijs
pushed a commit
to joostdenijs/azure-sdk-for-java
that referenced
this issue
Jan 18, 2013
fix the minor javadoc udpate for media service
jianghaolu
pushed a commit
to jianghaolu/azure-sdk-for-java
that referenced
this issue
Apr 5, 2017
…b0dd77b941ca Looks good
g2vinay
pushed a commit
to g2vinay/azure-sdk-for-java
that referenced
this issue
Mar 4, 2019
Removed request encryption check from Set Tier API
g2vinay
pushed a commit
to g2vinay/azure-sdk-for-java
that referenced
this issue
May 30, 2019
[Snyk] Fix for 3 vulnerable dependencies
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
This code fails with a null pointer exception:
The reason is that the service returns a 304 code (NotModified), which is an exceptional condition, but processing continues regardless. The fix is to add the following code to
BlobRestProxy.getBlobPropertiesResultFromResponse
:This will throw a new ServiceException, which is more actionable by calling code.
The text was updated successfully, but these errors were encountered: