> @@ -266,7 +267,7 @@ public Builder fromContainer(Container in) {
>
> .sysInitPath(in.sysInitPath()).resolvConfPath(in.resolvConfPath()).driver(in.driver())
>
> .execDriver(in.execDriver()).volumes(in.volumes()).hostConfig(in.hostConfig()).volumesRW(in.volumesRW())
>
> .command(in.command()).status(in.status()).ports(in.ports()).hostnamePath(in.hostnamePath())
> -
> .hostsPath(in.hostsPath()).mountLabel(in.mountLabel()).processLabel(in.processLabel()).node(in.node());
> +
> .hostsPath(in.hostsPath()).mountLabel(in.mountLabel()).processLabel(in.processLabel()).node(in.node().get());
This will fail when `node` is `Optional.absent()`
---
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/281/files/74af80710c0a4456dc1cabea949123ead7a54009#r66759899