andreaturli commented on this pull request.


> @@ -179,8 +180,15 @@ public String apply(Status input) {
       Credentials credentials = credentialStore.get("node#" + 
virtualMachine.name());
       builder.credentials(LoginCredentials.fromCredentials(credentials));
 
-      
builder.publicAddresses(getPublicIpAddresses(virtualMachine.properties().networkProfile().networkInterfaces()));

something like that maybe 
```
if (virtualMachine.properties().networkProfile() != null) {  
builder.publicAddresses(getPublicIpAddresses(virtualMachine.properties().networkProfile().networkInterfaces()));
builder.privateAddresses(getPrivateIpAddresses(virtualMachine.properties().networkProfile().networkInterfaces()));
 }
?
```

-- 
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/367#discussion_r104034997

Reply via email to