diff options
author | Aditya R <arajan@redhat.com> | 2022-04-22 00:47:10 +0530 |
---|---|---|
committer | Aditya R <arajan@redhat.com> | 2022-04-22 00:58:40 +0530 |
commit | 8080a5f8ec8ad798eab194ef495a68824bd2e802 (patch) | |
tree | 3ce0106afbfbdbfb55f018a662329c0025a889f9 /test/system | |
parent | 121dde6234ddfcaf11abea03449bfd2a11da90a5 (diff) | |
download | podman-8080a5f8ec8ad798eab194ef495a68824bd2e802.tar.gz podman-8080a5f8ec8ad798eab194ef495a68824bd2e802.tar.bz2 podman-8080a5f8ec8ad798eab194ef495a68824bd2e802.zip |
Revert "container,inspect: convert Entrypoint to array instead of a string"
It seems this breaks older version of `podman-remote` users hence it
looks like this patch would be a better candidate for podman `5.0`
Problem
* Client with `4.0` cannot interact with a server of `4.1`
Plan this patch for podman `5.0`
This reverts commit 0cebd158b6d8da1828b1255982e27fe9224310d0.
Signed-off-by: Aditya R <arajan@redhat.com>
Diffstat (limited to 'test/system')
-rw-r--r-- | test/system/200-pod.bats | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/system/200-pod.bats b/test/system/200-pod.bats index e6f4ecdbc..f5fe41924 100644 --- a/test/system/200-pod.bats +++ b/test/system/200-pod.bats @@ -234,7 +234,7 @@ EOF local infra_cid="$output" # confirm that entrypoint is what we set run_podman container inspect --format '{{.Config.Entrypoint}}' $infra_cid - is "$output" "[$infra_command]" "infra-command took effect" + is "$output" "$infra_command" "infra-command took effect" # confirm that infra container name is set run_podman container inspect --format '{{.Name}}' $infra_cid is "$output" "$infra_name" "infra-name took effect" |