Skip to content

Commit f7fddd7

Browse files
author
OpenShift Bot
authored
Merge pull request #9637 from damemi/tty-bug
Merged by openshift-bot
2 parents 333574a + 313a029 commit f7fddd7

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

pkg/cmd/cli/cmd/debug.go

+3
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,9 @@ func (o *DebugOptions) Complete(cmd *cobra.Command, f *clientcmd.Factory, args [
177177
return kcmdutil.UsageError(cmd, "you may not specify -t and -T together")
178178
case o.ForceTTY:
179179
o.Attach.TTY = true
180+
// since ForceTTY is defaulted to false, check if user specifically passed in "=false" flag
181+
case !o.ForceTTY && cmd.Flags().Changed("tty"):
182+
o.Attach.TTY = false
180183
case o.DisableTTY:
181184
o.Attach.TTY = false
182185
// don't default TTY to true if a command is passed

test/cmd/debug.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ os::cmd::expect_success_and_text "oc debug dc/test-deployment-config --keep-live
2828
os::cmd::expect_success_and_text "oc debug dc/test-deployment-config -o yaml -- /bin/env" '\- /bin/env'
2929
os::cmd::expect_success_and_text "oc debug -t dc/test-deployment-config -o yaml" 'stdinOnce'
3030
os::cmd::expect_success_and_text "oc debug -t dc/test-deployment-config -o yaml" 'tty'
31+
os::cmd::expect_success_and_not_text "oc debug --tty=false dc/test-deployment-config -o yaml" 'tty'
3132
os::cmd::expect_success_and_not_text "oc debug dc/test-deployment-config -o yaml -- /bin/env" 'stdin'
3233
os::cmd::expect_success_and_not_text "oc debug dc/test-deployment-config -o yaml -- /bin/env" 'tty'
3334
os::cmd::expect_failure_and_text "oc debug dc/test-deployment-config --node-name=invalid -- /bin/env" 'on node "invalid"'
@@ -46,4 +47,4 @@ sha="$( oc get istag/wildfly:latest --template '{{ .image.metadata.name }}' )"
4647
os::cmd::expect_success_and_text "oc debug isimage/wildfly@${sha} -o yaml" 'image: openshift/wildfly-100-centos7'
4748

4849
echo "debug: ok"
49-
os::test::junit::declare_suite_end
50+
os::test::junit::declare_suite_end

0 commit comments

Comments
 (0)