> @@ -108,6 +109,8 @@ private void authenticateOnCall() {
> * Always close your service when you're done with it.
> */
> public void close() {
> - closeQuietly(compute.getContext());
> + if (compute != null) {
> + compute.getContext();Missing `.close()` here? (see also below a couple of times) --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-examples/pull/10/files#r5134195
