> + @Named("stack:create")
> + @POST
> + @SelectJson("stack")
> + Stack create(@BinderParam(BindToJsonPayload.class) CreateStack options);
> +
> + @Named("stack:delete")
> + @DELETE
> + @Path("/{stack_name}/{stack_id}")
> + @Fallback(NullOnNotFoundOr404.class)
> + @Nullable
> + boolean delete(@PathParam("stack_name") String name,
> @PathParam("stack_id") String id);
> +
> + @Named("stack:update")
> + @PUT
> + @Path("/{stack_name}/{stack_id}")
> + @Fallback(NullOnNotFoundOr404.class)
Write operations as PUT/POST shouldn't define fallbacks for 404 responses.
Remove it (see
[JCLOUDS-691](https://issues.apache.org/jira/browse/JCLOUDS-691)).
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/188/files#r28424070