Changed deprecated call to .getTag to .getGroup

This commit is contained in:
Mattias Holmqvist 2011-05-02 00:17:41 +02:00
parent b129d17de3
commit a542e85dad
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ Here's an example of creating and running a small linux node in the group webser
(defn nodes-in-group
"list details of all the nodes in the given group."
([#^ComputeService compute #^String group]
(filter #(= (.getTag %) group) (nodes-with-details compute))))
(filter #(= (.getGroup %) group) (nodes-with-details compute))))
(defn images
"Retrieve the available images for the compute context."