nacx commented on this pull request.
> logger.trace(">> provisioning complete for server. returned
> id='%s'", server.id());
} catch (Exception ex) {
logger.error(ex, ">> failed to provision server. rollbacking..");
throw Throwables.propagate(ex);
}
- return new NodeAndInitialCredentials<Server>(server, server.id(), null);
+ LoginCredentials serverCredentials = LoginCredentials.builder()
+ .user(loginUser)
+ .password(password)
+ .privateKey(privateKey)
+ .build();
Then let's keep them for the moment. We'll cleanup the node access
configuration in another pull request.
--
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/338