diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-11-17 12:02:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-17 12:02:37 +0100 |
commit | 85733e0b4a1d246debcc453f4248cbd9bb91a9d1 (patch) | |
tree | aa775d674d2e499972066c56e6da34ec2682cdce /pkg/domain/entities | |
parent | bd6fbb190ba701ff77c084a36b05e64ba9884a78 (diff) | |
parent | 33ec8c6698473ab650df65b958e910e03e240fe6 (diff) | |
download | podman-85733e0b4a1d246debcc453f4248cbd9bb91a9d1.tar.gz podman-85733e0b4a1d246debcc453f4248cbd9bb91a9d1.tar.bz2 podman-85733e0b4a1d246debcc453f4248cbd9bb91a9d1.zip |
Merge pull request #12281 from vrothberg/fix-12007
fix remote checkpoint/restore
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r-- | pkg/domain/entities/containers.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/entities/containers.go b/pkg/domain/entities/containers.go index 8b7cd62d9..1a4019bb1 100644 --- a/pkg/domain/entities/containers.go +++ b/pkg/domain/entities/containers.go @@ -212,7 +212,7 @@ type RestoreOptions struct { Name string TCPEstablished bool ImportPrevious string - PublishPorts []nettypes.PortMapping + PublishPorts []string Pod string PrintStats bool } |