Skip to content

Commit b051e60

Browse files
committed
oc debug fix crash on attach
Refactors to pick up the initializer for defaultAttachFunc Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1618522
1 parent c0a906d commit b051e60

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

pkg/oc/cli/debug/debug.go

+5-9
Original file line numberDiff line numberDiff line change
@@ -139,21 +139,17 @@ type DebugOptions struct {
139139
}
140140

141141
func NewDebugOptions(streams genericclioptions.IOStreams) *DebugOptions {
142+
attachOpts := kcmd.NewAttachOptions(streams)
143+
attachOpts.TTY = true
144+
attachOpts.Stdin = true
142145
return &DebugOptions{
143146
PrintFlags: genericclioptions.NewPrintFlags("").WithTypeSetter(scheme.Scheme),
144147
IOStreams: streams,
145148
Timeout: 15 * time.Minute,
146149
KeepInitContainers: true,
147150
AsUser: -1,
148-
Attach: kcmd.AttachOptions{
149-
StreamOptions: kcmd.StreamOptions{
150-
IOStreams: streams,
151-
TTY: true,
152-
Stdin: true,
153-
},
154-
Attach: &kcmd.DefaultRemoteAttach{},
155-
},
156-
LogsForObject: polymorphichelpers.LogsForObjectFn,
151+
Attach: *attachOpts,
152+
LogsForObject: polymorphichelpers.LogsForObjectFn,
157153
}
158154
}
159155

0 commit comments

Comments
 (0)