Merge pull request #1182 from aplowe/master

openstack-nova: NPE in SecurityGroupApi.delete()
This commit is contained in:
Adrian Cole 2013-01-16 08:40:21 -08:00
commit f6990c60c9
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ public interface SecurityGroupAsyncApi {
*/
@DELETE
@Path("/os-security-groups/{id}")
@Fallback(NullOnNotFoundOr404.class)
@Fallback(FalseOnNotFoundOr404.class)
@Consumes(MediaType.APPLICATION_JSON)
ListenableFuture<Boolean> delete(@PathParam("id") String id);