> @@ -93,7 +94,7 @@ public static Container create(String id, Date created,
> String path, String name
> String resolvConfPath, Map<String, String>
> volumes, HostConfig hostConfig,
> String driver, String execDriver,
> Map<String, Boolean> volumesRW, String command,
> String status, List<Port> ports, String
> hostnamePath, String hostsPath,
> - String mountLabel, String processLabel,
> Node node) {
> + String mountLabel, String processLabel,
> Optional<Node> node) {
> return new AutoValue_Container(id, created, path, name, copyOf(args),
> config, state, image, networkSettings,
> sysInitPath, resolvConfPath, copyOf(volumes), hostConfig,
> driver, execDriver, copyOf(volumesRW), command,
> status, copyOf(ports), hostnamePath, hostsPath, mountLabel,
> processLabel, node);
Use `Optional.fromNullable(node)` to set the node.
---
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/60f96629c0f24dc819a526c5347f70beb0e7f416#r66575860