> @@ -37,5 +43,14 @@ > @GET > @ResponseParser(ParseJobStatus.class) > JobStatus jobStatus(@EndpointParam URI jobURI); > + > + /** > + * Get status of captured custom image after capture call > + */ > + @GET > + @Fallback(Fallbacks.NullOnNotFoundOr404.class)
Try to avoid returning null collections; it is a font of bugs and NPEs. Change the fallback to return an empty list. --- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs/pull/291/files/8a39037237f5cccc7d100bc58a9a82bdb89924b1#r67885873
